@@ -8,7 +8,7 @@ import { move } from "fs-extra"
88import * as path from "path"
99import { TmpDir } from "temp-file"
1010import { TestAppAdapter } from "../helpers/TestAppAdapter"
11- import { PackedContext , assertPack , removeUnstableProperties } from "../helpers/packTester"
11+ import { EXTENDED_TIMEOUT , PackedContext , assertPack , removeUnstableProperties } from "../helpers/packTester"
1212import { NEW_VERSION_NUMBER , OLD_VERSION_NUMBER , testAppCacheDirName , tuneTestUpdater , writeUpdateConfig } from "../helpers/updaterTestUtil"
1313import { mockForNodeRequire } from "vitest-mock-commonjs"
1414import { ExpectStatic } from "vitest"
@@ -137,7 +137,7 @@ async function testMac(expect: ExpectStatic, arch: Arch) {
137137}
138138
139139test . 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)
143143test . ifMac . ifEnv ( process . arch === "arm64" ) ( "Mac arm64" , ( { expect } ) => testMac ( expect , Arch . arm64 ) )
0 commit comments