Files
unity-builder/src/model/index.test.js
2020-04-26 21:45:10 +02:00

18 lines
322 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();
});
});