UNPKG

polendina

Version:

Non-UI browser testing for JavaScript libraries from the command-line

12 lines (9 loc) 284 B
const { assert } = require('chai') const index = require('./') module.exports.test1 = async function () { console.log('testing bare fixture') assert.strictEqual(await index(), 'bare test fixture') } module.exports.test2 = async function () { assert.fail('faily mcfailface') }