Skip to content

Commit 7e2ace2

Browse files
committed
CCM-12776: extend build timeout
1 parent 4f95886 commit 7e2ace2

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

tests/test-team/config/component/component.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ export default defineConfig({
4545
],
4646
/* Run your local dev server before starting the tests */
4747
webServer: {
48-
timeout: 2 * 60 * 1000, // 2 minutes
48+
timeout: 4 * 60 * 1000, // 4 minutes
4949
command: buildCommand,
5050
cwd: path.resolve(__dirname, '../../../..'),
5151
url: 'http://localhost:3000/templates/create-and-submit-templates',
5252
reuseExistingServer: !process.env.CI,
5353
stderr: 'pipe',
54+
stdout: 'pipe',
5455
},
5556
});

tests/test-team/config/e2e/e2e.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ export default defineConfig({
4545
],
4646
/* Run your local dev server before starting the tests */
4747
webServer: {
48-
timeout: 2 * 60 * 1000, // 2 minutes
48+
timeout: 4 * 60 * 1000, // 4 minutes
4949
command: buildCommand,
5050
cwd: path.resolve(__dirname, '../../../..'),
5151
url: 'http://localhost:3000/templates/create-and-submit-templates',
5252
reuseExistingServer: !process.env.CI,
5353
stderr: 'pipe',
54+
stdout: 'pipe',
5455
},
5556
});

tests/test-team/config/routing-component/routing-component.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ export default defineConfig({
4545
],
4646
/* Run your local dev server before starting the tests */
4747
webServer: {
48-
timeout: 2 * 60 * 1000, // 2 minutes
48+
timeout: 4 * 60 * 1000, // 4 minutes
4949
command: buildCommand,
5050
cwd: path.resolve(__dirname, '../../../..'),
5151
url: 'http://localhost:3000/templates/create-and-submit-templates',
5252
reuseExistingServer: !process.env.CI,
5353
stderr: 'pipe',
54+
stdout: 'pipe',
5455
},
5556
});

tests/test-team/config/user-timeout/user-timeout.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@ export default defineConfig({
4949
],
5050
/* Run your local dev server before starting the tests */
5151
webServer: {
52-
timeout: 2 * 60 * 1000, // 2 minutes
52+
timeout: 4 * 60 * 1000, // 4 minutes
5353
command: buildCommand,
5454
cwd: path.resolve(__dirname, '../../../..'),
5555
url: 'http://localhost:3000/templates/create-and-submit-templates',
5656
reuseExistingServer: !process.env.CI,
5757
stderr: 'pipe',
58+
stdout: 'pipe',
5859
},
5960
});

0 commit comments

Comments
 (0)