mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-01-29 14:39:33 +08:00
* Refactor to typescript * Fix platform and workflow * Fix workflow and platform * Update husky and image-tag * Use 'yarn lint-staged' instead of 'npx lint-staged'
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
import * as Index from '.';
|
|
|
|
describe('Index', () => {
|
|
test.each(['Action', 'Docker', 'ImageTag', 'Input', 'Output', 'ResultsCheck'])(
|
|
'exports %s',
|
|
exportedModule => {
|
|
expect(Index[exportedModule]).toBeDefined();
|
|
},
|
|
);
|
|
});
|