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

Commit 90c6e43

Browse files
committed
Increase the test-timeouts once more
1 parent 0d7b271 commit 90c6e43

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/generator-my-ts-project/src/tests/DroneFileMapping.test.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export function DroneFileMappingTests(context: TestContext<MyTSModuleGenerator>)
7171
"Checking whether `publish` commands are replaced correctly…",
7272
async function()
7373
{
74-
this.timeout(10 * 1000);
74+
this.timeout(20 * 1000);
7575
Assert.ok(await AssertCommand((command) => command.startsWith("npm publish")));
7676
Assert.ok(await AssertCommand((command) => !command.startsWith("npx lerna publish"), true));
7777
});
@@ -80,14 +80,16 @@ export function DroneFileMappingTests(context: TestContext<MyTSModuleGenerator>)
8080
"Checking whether `lerna exec` commands are replaced correctly…",
8181
async function()
8282
{
83-
this.timeout(10 * 1000);
83+
this.timeout(20 * 1000);
8484
Assert.ok(await AssertCommand((command) => !command.startsWith("npx lerna exec"), true));
8585
});
8686

8787
test(
8888
"Checking whether github-releases are adjusted correctly…",
89-
async () =>
89+
async function()
9090
{
91+
this.timeout(20 * 1000);
92+
9193
Assert.ok(
9294
(await fileMappingOptions.Transform(await fileMappingOptions.Metadata)).every(
9395
(document) =>

0 commit comments

Comments
 (0)