Skip to content

Commit

Permalink
test: updated some timeouts in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rH4rtinger committed Sep 20, 2024
1 parent 661c2af commit f5114bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/test/suite/convertFormat.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ suite("convert format", () => {
*/
test(`should transform ${pArgument.format} with ${pArgument.fileSelection ? "file" : "folder"} ${
pArgument.changelogLocation
} ${typeof pArgument.changelogLocation !== "string" ? "selected from rmb" : ""}`, async () => {
} ${typeof pArgument.changelogLocation !== "string" ? "selected from rmb" : ""}`, async function () {
this.timeout(4000);

const infoMessage = TestUtils.createInfoMessageStubWithSelection();

await assertConverting(
Expand Down
2 changes: 1 addition & 1 deletion src/test/suite/extension.it.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ suite("Extension Integration Test Suite", () => {
* Also creates a properties file for the test.
*/
suiteSetup("init extension and properties file", async function () {
this.timeout(80_000);
this.timeout(180_000);

// start a maria db container and wait for its status
await DockerTestUtils.startContainer();
Expand Down

0 comments on commit f5114bb

Please sign in to comment.