mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00
Update references
This commit is contained in:
parent
4051832dc0
commit
d8896dc4f5
File diff suppressed because one or more lines are too long
@ -14,9 +14,11 @@ class Cache {
|
||||
return;
|
||||
}
|
||||
|
||||
console.log('Library folder does not exist.');
|
||||
console.log('Consider setting up caching to speed up your workflow.');
|
||||
console.log('If this is not your first build.');
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(`
|
||||
Library folder does not exist.
|
||||
Consider setting up caching to speed up your workflow
|
||||
If this is not your first build.`);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -5,5 +5,7 @@ import Docker from './docker';
|
||||
import Input from './input';
|
||||
import ImageTag from './image-tag';
|
||||
import Platform from './platform';
|
||||
import Project from './project';
|
||||
import Unity from './unity';
|
||||
|
||||
export { Action, BuildParameters, Cache, Docker, Input, ImageTag, Platform };
|
||||
export { Action, BuildParameters, Cache, Docker, Input, ImageTag, Platform, Project, Unity };
|
||||
|
@ -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');
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user