Skip to content

Commit c501208

Browse files
committed
chore(test): increase timeout
things are getting serious
1 parent c2adf4c commit c501208

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

cli/test/add.android.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe.each([false, true])('Add: Android (monoRepoLike: %p)', (monoRepoLike) =
66

77
beforeAll(async () => {
88
// These commands are slowww...
9-
jest.setTimeout(120000);
9+
jest.setTimeout(150000);
1010
appDirObj = await makeAppDir(monoRepoLike);
1111
const appDir = appDirObj.appDir;
1212
// Init in this directory so we can test add

cli/test/add.ios.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe.each([false, true])('Add: iOS (monoRepoLike: %p)', (monoRepoLike) => {
66

77
beforeAll(async () => {
88
// These commands are slowww...
9-
jest.setTimeout(50000);
9+
jest.setTimeout(150000);
1010
appDirObj = await makeAppDir(monoRepoLike);
1111
const appDir = appDirObj.appDir;
1212
// Init in this directory so we can test add
@@ -37,4 +37,4 @@ describe.each([false, true])('Add: iOS (monoRepoLike: %p)', (monoRepoLike) => {
3737

3838
// Other test ideas:
3939
// should install/copy pre-existing cordova/capacitor plugins in package.json
40-
});
40+
});

cli/test/init.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('Init', () => {
1212

1313
beforeAll(async () => {
1414
// These commands are slowww...
15-
jest.setTimeout(20000);
15+
jest.setTimeout(150000);
1616
appDirObj = await mktmp();
1717
tmpDir = appDirObj.path;
1818
appDir = join(tmpDir, 'test-app');
@@ -80,4 +80,4 @@ describe('Init', () => {
8080
const jsonContents = JSON.parse(fileContents);
8181
expect(jsonContents.npmClient).toEqual(npmClient);
8282
});
83-
});
83+
});

cli/test/update.android.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe.each([false, true])('Update: Android (monoRepoLike: %p)', (monoRepoLike
88

99
beforeAll(async () => {
1010
// These commands are slowww...
11-
jest.setTimeout(50000);
11+
jest.setTimeout(150000);
1212
appDirObj = await makeAppDir(monoRepoLike);
1313
appDir = appDirObj.appDir;
1414
// Init in this directory so we can test add

cli/test/update.ios.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe.each([false, true])('Update: iOS (monoRepoLike: %p)', (monoRepoLike) =>
88

99
beforeAll(async () => {
1010
// These commands are slowww...
11-
jest.setTimeout(120000);
11+
jest.setTimeout(150000);
1212
appDirObj = await makeAppDir(monoRepoLike);
1313
appDir = appDirObj.appDir;
1414
// Init in this directory so we can test add

0 commit comments

Comments
 (0)