Skip to content

Commit 73e615d

Browse files
committed
Fix extension installation test
This throws now that the exit is non-zero.
1 parent bec6ab2 commit 73e615d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

test/integration/installExtension.test.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ describe("--install-extension", () => {
1313
})
1414
it("should use EXTENSIONS_GALLERY when set", async () => {
1515
const extName = "author.extension"
16-
const { stderr } = await runCodeServerCommand([...setupFlags, "--install-extension", extName], {
17-
EXTENSIONS_GALLERY: "{}",
18-
})
19-
expect(stderr).toMatch("No extension gallery service configured")
16+
await expect(
17+
runCodeServerCommand([...setupFlags, "--install-extension", extName], {
18+
EXTENSIONS_GALLERY: "{}",
19+
}),
20+
).rejects.toThrow("No extension gallery service configured")
2021
})
2122
})

0 commit comments

Comments
 (0)