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

18 lines
323 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',
'Input',
'ImageTag',
'Platform',
'Project',
'Unity',
])('exports %s', exportedModule => {
expect(typeof Index[exportedModule]).toStrictEqual('function');
});
});