1
0
mirror of synced 2025-11-08 12:57:47 +00:00
Files
typescript-starter/src/index.spec.ts
2017-02-08 21:52:08 -05:00

9 lines
245 B
TypeScript

import { test } from 'ava'
import * as lib from './'
test('functions can be used without es imports', (t) => {
t.true(typeof lib.double === 'function')
t.true(typeof lib.power === 'function')
t.true(typeof lib.asyncABC === 'function')
})