Skip to content

Commit 891f5e2

Browse files
committed
see if we don't need sequential testing since rpm runs 4 different package manager tests
1 parent c809d16 commit 891f5e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/src/updater/blackboxUpdateTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { DebUpdater, PacmanUpdater, RpmUpdater } from "electron-updater"
1515

1616
// Linux Tests MUST be run in docker containers for proper ephemeral testing environment (e.g. fresh install + update + relaunch)
1717
// Currently this test logic does not handle uninstalling packages (yet)
18-
describe("Electron autoupdate (fresh install & update)", { sequential: true }, () => {
18+
describe("Electron autoupdate (fresh install & update)", () => {
1919
beforeAll(() => {
2020
process.env.AUTO_UPDATER_TEST = "1"
2121
})
@@ -33,7 +33,7 @@ describe("Electron autoupdate (fresh install & update)", { sequential: true }, (
3333
})
3434

3535
// must be sequential in order for process.env.ELECTRON_BUILDER_LINUX_PACKAGE_MANAGER to be respected per-test
36-
describe.runIf(process.platform === "linux")("linux", { sequential: true }, () => {
36+
describe.runIf(process.platform === "linux")("linux", () => {
3737
test.ifEnv(process.env.RUN_APP_IMAGE_TEST && process.arch === "arm64")("AppImage - arm64", async () => {
3838
await runTest("AppImage", Arch.arm64)
3939
})

0 commit comments

Comments
 (0)