1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-06-30 05:32:00 +02:00
js-bigchaindb-driver/test/test.js

12 lines
155 B
JavaScript
Raw Normal View History

import test from 'ava'
2017-06-08 14:09:23 +02:00
test('foo', t => {
t.pass()
})
2017-06-08 14:09:23 +02:00
test('bar', async t => {
const bar = Promise.resolve('bar')
2017-06-08 14:09:23 +02:00
t.is(await bar, 'bar')
})