mirror of
https://github.com/status-im/artproject.git
synced 2025-02-22 20:58:14 +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);
|
|
});
|
|
});
|
|
});
|