Repository URL to install this package:
|
Version:
1.1.16 ▾
|
const dist = require('../src')
const {testExportedNames, testDistedAPI} = require('./_api')
test('works with dist - src', () => {
const exported = testExportedNames(dist)
expect.assertions(exported.length)
exported.map(exp => expect(exp).toBe(true))
})
test('dist classes - src', () => {
testDistedAPI(dist)
})