mirror of
https://github.com/status-im/artproject.git
synced 2025-02-23 21:28:20 +00:00
10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
|
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);
|
||
|
});
|
||
|
});
|
||
|
});
|