12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
|
import { expect } from 'chai';
|
||
|
|
||
|
import { main, STATUS_SUCCESS } from '../src/app';
|
||
|
import { describeLeaks } from './helpers/async';
|
||
|
|
||
|
describeLeaks('main app', async () => {
|
||
|
xit('completion should succeed', async () => {
|
||
|
const status = await main(['node', 'test', 'complete']);
|
||
|
expect(status).to.equal(STATUS_SUCCESS);
|
||
|
});
|
||
|
});
|