unity-builder/src/model/index.test.js

18 lines
324 B
JavaScript
Raw Normal View History

import * as Index from '.';
describe('Index', () => {
2020-01-27 22:07:26 +00:00
test.each([
'Action',
'BuildParameters',
'Cache',
'Docker',
'ImageTag',
2020-04-22 20:41:29 +00:00
'Input',
2020-01-27 22:07:26 +00:00
'Platform',
'Project',
'Unity',
])('exports %s', (exportedModule) => {
expect(Index[exportedModule]).toBeEitherAFunctionOrAnObject();
2020-01-27 22:07:26 +00:00
});
});