import { suite, test } from 'mocha'; import { expect } from 'chai'; suite('first tests', () => { test('a thing', () => { expect(true).to.eq(true); }); });