mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-01-29 12:19:06 +08:00
18 lines
324 B
JavaScript
18 lines
324 B
JavaScript
import * as Index from '.';
|
|
|
|
describe('Index', () => {
|
|
test.each([
|
|
'Action',
|
|
'BuildParameters',
|
|
'Cache',
|
|
'Docker',
|
|
'ImageTag',
|
|
'Input',
|
|
'Platform',
|
|
'Project',
|
|
'Unity',
|
|
])('exports %s', (exportedModule) => {
|
|
expect(Index[exportedModule]).toBeEitherAFunctionOrAnObject();
|
|
});
|
|
});
|