mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2025-01-03 18:35:13 +01:00
074b4f0871
This commit adds tests for baseRequest, with the aim to improve the code coverage of the whole repo. Part of https://github.com/bigchaindb/js-bigchaindb-driver/issues/220
16 lines
475 B
JavaScript
16 lines
475 B
JavaScript
import test from 'ava'
|
|
import baseRequest from '../../src/baseRequest'
|
|
|
|
test('baseRequest test query and vsprint', async t => {
|
|
const target = {
|
|
message: 'HTTP Error: Requested page not reachable',
|
|
requestURI: 'https://www.google.com/teapot',
|
|
status: '418 I\'m a Teapot',
|
|
}
|
|
const error = await t.throws(baseRequest('https://%s.com/', {
|
|
urlTemplateSpec: ['google'],
|
|
query: 'teapot'
|
|
}))
|
|
t.deepEqual(target, error)
|
|
})
|