1
0
Fork 0
salty-dog/test/TestApp.ts

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);
});
});