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

8 lines
191 B
TypeScript

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