8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
|
import { expect } from 'chai';
|
||
|
|
||
|
describe('context', () => {
|
||
|
it('tests things', () => {
|
||
|
expect(true).to.equal(true);
|
||
|
});
|
||
|
});
|