mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-07 20:35:33 -04:00

* feat: upgrade to images of version 1 (rolling tag) * chore: indicate what needs to move out of the input class
21 lines
476 B
TypeScript
21 lines
476 B
TypeScript
// Import this named export into your test file:
|
|
import Platform from '../platform';
|
|
|
|
export const mockGetFromUser = jest.fn().mockResolvedValue({
|
|
editorVersion: '',
|
|
targetPlatform: Platform.types.Test,
|
|
projectPath: '.',
|
|
buildName: Platform.types.Test,
|
|
buildsPath: 'build',
|
|
buildMethod: undefined,
|
|
buildVersion: '1.3.37',
|
|
customParameters: '',
|
|
sshAgent: '',
|
|
chownFilesTo: '',
|
|
gitPrivateToken: '',
|
|
});
|
|
|
|
export default {
|
|
getFromUser: mockGetFromUser,
|
|
};
|