mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-02-04 02:43:19 +08:00
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
import * as Index from '.';
|
|
|
|
describe('Index', () => {
|
|
test.each(['Action', 'Docker', 'ImageTag', 'Input', 'Output', 'ResultsCheck'])(
|
|
'exports %s',
|
|
exportedModule => {
|
|
expect(typeof Index[exportedModule]).toStrictEqual('function');
|
|
},
|
|
);
|
|
});
|