Fixed platform-uploader tests

This commit is contained in:
Kir_Antipov 2024-01-11 21:33:14 +00:00
parent 2710429e10
commit 79d5ddbde2

View file

@ -14,6 +14,6 @@ describe("createPlatformUploader", () => {
});
test("throws an error when an unknown platform is provided", () => {
expect(() => createPlatformUploader("unknown" as PlatformType, { githubContext: null })).toThrow("Unknown platform 'unknown'.");
expect(() => createPlatformUploader("unknown" as PlatformType, { githubContext: null })).toThrow();
});
});