import { assert } from 'chai'; describe('Main', () => { it('Should work', () => { let hello = 'hello!'; assert.equal(hello, 'hello!'); }); });