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

fix: added retries to flaky test #299

Merged
merged 1 commit into from
May 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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