Skip to content

Commit

Permalink
chore: fix tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
snitin315 committed Aug 4, 2024
1 parent 9998d51 commit ead0cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/server.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ test.describe("server option", () => {

test.describe("as object", () => {
// TODO: This test is skipped because it fails on Windows, should be fixed in the future
if (process.platform !== "win32") {
if (process.platform === "win32") {
return;
}
test.describe("ca, pfx, key and cert are array of buffers", () => {
Expand Down

0 comments on commit ead0cf8

Please sign in to comment.