Change exit strategy for activation step

This commit is contained in:
Webber
2020-01-08 00:39:53 +01:00
committed by Webber Takken
parent a76c6a7321
commit 53bec7beb4
4 changed files with 36 additions and 25 deletions

View File

@@ -5,7 +5,7 @@ describe('UnityImageVersion', () => {
repository: 'test1',
name: 'test2',
version: '2099.9.f9f9',
platform: 'Stadia',
platform: 'Test',
builderPlatform: '',
};
@@ -59,7 +59,7 @@ describe('UnityImageVersion', () => {
});
it('returns no specific build platform for generic targetPlatforms', () => {
const image = new ImageTag({ platform: 'Stadia' });
const image = new ImageTag({ platform: 'NoTarget' });
expect(image.toString()).toStrictEqual(`${defaults.image}:2019.2.11f1`);
});