UNPKG

193 BPlain TextView Raw
1import * as mainModule from './exports';
2
3describe('exports file', () => {
4 it('Exports an "aai" argv interface', async () => {
5 expect(Object.keys(mainModule)).toEqual(['aai']);
6 });
7});