mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-22 19:45:56 +00:00
skip insecure test except generic arm64
This commit is contained in:
parent
2beb6274e7
commit
2d46a32431
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ describe("Websocket Test", {
|
|||
});
|
||||
|
||||
test("Insecure Websocket", {
|
||||
skip: !!process.env.CI && process.arch === "x64" && (process.platform === "darwin" || process.platform === "linux" || process.platform === "win32"),
|
||||
skip: !!process.env.CI && process.arch !== "x64" && process.platform !== "linux",
|
||||
}, async () => {
|
||||
const websocketMonitor = new websocket();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue