Skip to content

Commit 2b42431

Browse files
authored
ci: fix (#3999)
1 parent 6d060ed commit 2b42431

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/e2e/client.test.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ describe("client option", () => {
4242
await server.stop();
4343
});
4444

45-
it("overlay should be true by default", () => {
46-
expect(server.options.client.overlay).toBe(true);
47-
});
48-
4945
it("responds with a 200 status code for /ws path", async () => {
5046
page
5147
.on("console", (message) => {
@@ -59,6 +55,9 @@ describe("client option", () => {
5955
waitUntil: "networkidle0",
6056
});
6157

58+
// overlay should be true by default
59+
expect(server.options.client.overlay).toBe(true);
60+
6261
expect(response.status()).toMatchSnapshot("response status");
6362

6463
expect(consoleMessages.map((message) => message.text())).toMatchSnapshot(

0 commit comments

Comments
 (0)