1
0
Fork 0
js-yaml-schema/test/TestApp.ts

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