artproject/test/spec/test.js

10 lines
217 B
JavaScript
Raw Normal View History

2018-01-08 19:11:13 +00:00
import { assert } from 'chai';
describe('Give it some context', () => {
describe('maybe a bit more context here', () => {
it('should run here few assertions', () => {
assert.isOk(true);
});
});
});