UNPKG

polendina

Version:

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

15 lines (11 loc) 276 B
/* globals describe it */ import fixture from './index.js' import { assert } from 'chai' describe('test suite 1', () => { it('test case 1', () => { assert.strictEqual(fixture, 'polendina test') }) it('test case 2', () => { assert.ok(true, 'all good') }) })