9 lines
140 B
TypeScript
9 lines
140 B
TypeScript
import 'mocha'
|
|
import { expect } from 'chai'
|
|
|
|
describe('stub test', () => {
|
|
it('should pass', () => {
|
|
expect(true).to.be.true
|
|
})
|
|
})
|