8 lines
232 B
JavaScript
8 lines
232 B
JavaScript
|
import * as Index from '.';
|
||
|
|
||
|
describe('Index', () => {
|
||
|
test.each(['Action', 'Docker', 'ImageTag', 'Input', 'Output'])('exports %s', exportedModule => {
|
||
|
expect(typeof Index[exportedModule]).toStrictEqual('function');
|
||
|
});
|
||
|
});
|