8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
|
import { expect } from 'chai';
|
||
|
|
||
|
import { main } from '../src/app';
|
||
|
|
||
|
describe('main function', async () => {
|
||
|
it('should exit 1', async () => expect(main([])).to.eventually.equal(1));
|
||
|
});
|