10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
|
const chai = require("chai");
|
||
|
|
||
|
const expect = chai.expect;
|
||
|
|
||
|
describe('Stub test', () => {
|
||
|
it('should pass', () => {
|
||
|
expect(true).to.be.true
|
||
|
})
|
||
|
})
|