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 eb0a426 commit 3f48063
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ describe('Cloud Runner Caching', () => {
expect(results2).toContain('Activation successful');
expect(build2ContainsBuildSucceeded).toBeTruthy();
expect(results2).toContain(buildSucceededString);
expect(results2.split('Activation successful')[1]).not.toContain(libraryString);
expect(results2.split('Activation successful').length - 1).toEqual(2);
expect(results2.split('Activation successful')[2]).not.toContain(libraryString);
expect(build2NotContainsZeroLibraryCacheFilesMessage).toBeTruthy();
expect(build2NotContainsZeroLFSCacheFilesMessage).toBeTruthy();
}, 1_000_000_000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ describe('Cloud Runner Kubernetes', () => {
const buildSucceededString = 'Build succeeded';

expect(results).toContain('Collected Logs');
expect(results).toContain('LOGHASH');
expect(results).toContain(libraryString);
expect(results).toContain(buildSucceededString);
expect(results).not.toContain(cachePushFail);
Expand Down

0 comments on commit 3f48063

Please sign in to comment.