We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ff9777 commit 1586391Copy full SHA for 1586391
1 file changed
tests/server-function/cypress/e2e/server-function.cy.ts
@@ -1,9 +1,9 @@
1
describe("server-function", () => {
2
- it("should isServer false on the client", () => {
+ it("should have isServer false in the client", () => {
3
cy.visit("/");
4
cy.get("#server-fn-test").contains('{"clientWithIsServer":false}');
5
})
6
- it("should isServer true in the server function", () => {
+ it("should have isServer true in the server function", () => {
7
cy.visit("/is-server");
8
cy.get("#server-fn-test").contains('{"serverFnWithIsServer":true}');
9
0 commit comments