Skip to content

Commit c562336

Browse files
committed
extend timeouts
1 parent 452e85f commit c562336

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
# must be it's own build node due to docker library/images size limit on github hosted runners
164164
test-e2e:
165165
runs-on: ubuntu-22.04
166-
timeout-minutes: 20
166+
timeout-minutes: 30
167167
strategy:
168168
fail-fast: false
169169
matrix:

test/src/updater/differentialUpdateTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { move } from "fs-extra"
88
import * as path from "path"
99
import { TmpDir } from "temp-file"
1010
import { TestAppAdapter } from "../helpers/TestAppAdapter"
11-
import { PackedContext, assertPack, removeUnstableProperties } from "../helpers/packTester"
11+
import { EXTENDED_TIMEOUT, PackedContext, assertPack, removeUnstableProperties } from "../helpers/packTester"
1212
import { NEW_VERSION_NUMBER, OLD_VERSION_NUMBER, testAppCacheDirName, tuneTestUpdater, writeUpdateConfig } from "../helpers/updaterTestUtil"
1313
import { mockForNodeRequire } from "vitest-mock-commonjs"
1414
import { ExpectStatic } from "vitest"
@@ -137,7 +137,7 @@ async function testMac(expect: ExpectStatic, arch: Arch) {
137137
}
138138

139139
test.ifMac("Mac Intel", ({ expect }) => testMac(expect, Arch.x64))
140-
test.ifMac("Mac universal", ({ expect }) => testMac(expect, Arch.universal))
140+
test.ifMac("Mac universal", { timeout: EXTENDED_TIMEOUT }, ({ expect }) => testMac(expect, Arch.universal))
141141

142142
// only run on arm64 macs, otherwise of course no files can be found to be updated to (due to arch mismatch)
143143
test.ifMac.ifEnv(process.arch === "arm64")("Mac arm64", ({ expect }) => testMac(expect, Arch.arm64))

0 commit comments

Comments
 (0)