Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
fix: added retries to flaky test (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
nayaknishant authored May 10, 2022
1 parent 3e426e0 commit ffc9a3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion samples/test/create-custom-job.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ function parseResponse(stdout) {

let customJobId;

describe('AI platform create custom job', () => {
describe('AI platform create custom job', async function () {
this.retries(2);
it('should create a new custom job', async () => {
const stdout = execSync(
`node ./create-custom-job.js ${customJobDisplayName} \
Expand Down

0 comments on commit ffc9a3f

Please sign in to comment.