Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
frostebite committed Jan 30, 2024
1 parent 3f48063 commit 07ed633
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,9 @@ describe('Cloud Runner Caching', () => {
expect(results2).toContain('Activation successful');
expect(build2ContainsBuildSucceeded).toBeTruthy();
expect(results2).toContain(buildSucceededString);
expect(results2.split('Activation successful').length - 1).toEqual(2);
expect(results2.split('Activation successful')[2]).not.toContain(libraryString);
const splitResults = results2.split('Activation successful');
expect(splitResults.length - 1).toEqual(2);
expect(splitResults[splitResults.length - 1]).not.toContain(libraryString);
expect(build2NotContainsZeroLibraryCacheFilesMessage).toBeTruthy();
expect(build2NotContainsZeroLFSCacheFilesMessage).toBeTruthy();
}, 1_000_000_000);
Expand Down

0 comments on commit 07ed633

Please sign in to comment.