mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00
18 lines
323 B
JavaScript
18 lines
323 B
JavaScript
import * as Index from '.';
|
|
|
|
describe('Index', () => {
|
|
test.each([
|
|
'Action',
|
|
'BuildParameters',
|
|
'Cache',
|
|
'Docker',
|
|
'Input',
|
|
'ImageTag',
|
|
'Platform',
|
|
'Project',
|
|
'Unity',
|
|
])('exports %s', exportedModule => {
|
|
expect(typeof Index[exportedModule]).toStrictEqual('function');
|
|
});
|
|
});
|