Should not contain fail to push to Library cache message in cache test

pull/461/head
Frostebite 2022-09-18 07:05:14 +01:00
parent 76667f4eb5
commit f71672a217
1 changed files with 2 additions and 0 deletions

View File

@ -33,10 +33,12 @@ describe('Cloud Runner', () => {
const baseImage = new ImageTag(buildParameter);
const results = await CloudRunner.run(buildParameter, baseImage.toString());
const libraryString = 'Rebuilding Library because the asset database could not be found!';
const cachePushFail = 'Did not push source folder to cache because it was empty Library';
const buildSucceededString = 'Build succeeded';
expect(results).toContain(libraryString);
expect(results).toContain(buildSucceededString);
expect(results).not.toContain(cachePushFail);
CloudRunnerLogger.log(`run 1 succeeded`);
const buildParameter2 = await CreateParameters(overrides);