1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-11-22 09:46:58 +01:00

Writing test for baserequest

This commit is contained in:
michielmulders 2017-09-27 15:38:52 +02:00
parent f82cbd6526
commit b77d296069

View File

@ -9,13 +9,13 @@ const conn = new Connection(API_PATH)
test('payload thrown at incorrect API_PATH', t => {
const path = 'http://localhost:9984/api/wrong/'
const conn = new Connection(path)
const connection = new Connection(path)
const target = {
message: 'HTTP Error: Requested page not reachable',
status: '404 NOT FOUND',
requestURI: 'http://localhost:9984/api/wrong/transactionId'
}
t.deepEqual(target, conn.getTransaction("transactionId"))
t.deepEqual(target, connection.getTransaction('transactionId'))
})
test('generate API URLS', t => {