Update references

This commit is contained in:
Webber
2020-01-27 23:07:26 +01:00
committed by Webber Takken
parent 4051832dc0
commit d8896dc4f5
4 changed files with 22 additions and 11 deletions
+13 -6
View File
@@ -1,10 +1,17 @@
import * as Index from '.';
describe('Index', () => {
test.each(['Action', 'BuildParameters', 'Cache', 'Docker', 'Input', 'ImageTag', 'Platform'])(
'exports %s',
exportedModule => {
expect(typeof Index[exportedModule]).toStrictEqual('function');
},
);
test.each([
'Action',
'BuildParameters',
'Cache',
'Docker',
'Input',
'ImageTag',
'Platform',
'Project',
'Unity',
])('exports %s', exportedModule => {
expect(typeof Index[exportedModule]).toStrictEqual('function');
});
});