Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
frostebite committed Feb 5, 2024
1 parent 345084e commit 28b4f69
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ describe('Cloud Runner Github Checks', () => {
githubChecks: `true`,
});
await CloudRunner.setup(buildParameter);
CloudRunner.buildParameters.githubCheckId = await GitHub.createGitHubCheck(`t`);
await GitHub.updateGitHubCheck(`t`, `t2`);
CloudRunner.buildParameters.githubCheckId = await GitHub.createGitHubCheck(`create`);
await GitHub.updateGitHubCheck(`direct`, `update`);
},
TIMEOUT_INFINITE,
);
Expand All @@ -47,8 +47,8 @@ describe('Cloud Runner Github Checks', () => {
});
GitHub.forceAsyncTest = true;
await CloudRunner.setup(buildParameter);
CloudRunner.buildParameters.githubCheckId = await GitHub.createGitHubCheck(`t`);
await GitHub.updateGitHubCheck(`t`, `t2`);
CloudRunner.buildParameters.githubCheckId = await GitHub.createGitHubCheck(`async create`);
await GitHub.updateGitHubCheck(`async Workflow`, `async update`);
GitHub.forceAsyncTest = false;
},
TIMEOUT_INFINITE,
Expand Down

0 comments on commit 28b4f69

Please sign in to comment.