mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-02-04 10:59:06 +08:00
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');
|
|
});
|
|
});
|