2020-03-31 22:47:10 +00:00
|
|
|
import { expect } from 'chai';
|
|
|
|
|
2022-10-08 20:56:30 +00:00
|
|
|
import { main } from '../src/app.js';
|
2020-03-31 22:47:10 +00:00
|
|
|
|
|
|
|
describe('main function', async () => {
|
|
|
|
it('should exit 1', async () => expect(main([])).to.eventually.equal(1));
|
|
|
|
});
|