Skip to content

Commit

Permalink
test: bump up timeout value to 5 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
RaisinTen committed Oct 14, 2022
1 parent a1b22d1 commit 323a4af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ describe("postject CLI", () => {
expect(status).to.equal(0);
expect(stdout).to.have.string(resourceContents);
}
}).timeout(30000);
}).timeout(3_00_000);
});

describe("postject API", () => {
Expand Down Expand Up @@ -202,7 +202,7 @@ describe("postject API", () => {
expect(status).to.equal(0);
expect(stdout).to.have.string(resourceContents);
}
}).timeout(30000);
}).timeout(3_00_000);
});

describe("Inject data into Node.js using CLI", () => {
Expand Down Expand Up @@ -277,7 +277,7 @@ describe("Inject data into Node.js using CLI", () => {
});
expect(status).to.equal(0);
}
}).timeout(60000);
}).timeout(3_00_000);
});

describe("Inject data into Node.js using API", () => {
Expand Down Expand Up @@ -345,7 +345,7 @@ describe("Inject data into Node.js using API", () => {
});
expect(status).to.equal(0);
}
}).timeout(70000);
}).timeout(3_00_000);
});

describe("api.js should not contain __filename and __dirname", () => {
Expand Down

0 comments on commit 323a4af

Please sign in to comment.