forked from cypress-io/cypress-mock-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.spec.ts
34 lines (32 loc) · 900 Bytes
/
middleware.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import connect from "connect"
import request from "supertest"
import { cypressMockMiddleware } from "../src/middleware"
describe("Cypress Mock SSR Middleware", function () {
let app: connect.Server | null
beforeEach(function () {
app = connect()
app.use(cypressMockMiddleware())
})
it("should accept a mock", function (done) {
request(app)
.post("/__cypress_server_mock")
.set("Content-Type", "application/json")
.send(
JSON.stringify({
hostname: "https://icanhazdadjoke.com",
method: "GET",
path: "/",
statusCode: 200,
body: {
id: "NmbFtH69hFd",
joke: "The Joke",
status: 200,
},
})
)
.expect(200, "", done)
})
it("should clear mocks", function (done) {
request(app).get("/__cypress_clear_mocks").expect(200, "", done)
})
})