1
+ import { describe , it , expect , beforeAll , afterAll } from 'vitest' ;
1
2
import { fetch } from '@whatwg-node/fetch' ;
2
3
import http from 'http' ;
3
4
import express from 'express' ;
@@ -7,15 +8,15 @@ import mount from 'koa-mount';
7
8
import { createServerAdapter } from '@whatwg-node/server' ;
8
9
import uWS from 'uWebSockets.js' ;
9
10
import { startDisposableServer } from './utils/tserver' ;
10
- import { serverAudits } from '../audits' ;
11
+ import { serverAudits } from '../src/ audits' ;
11
12
import { schema } from './fixtures/simple' ;
12
13
13
- import { createHandler as createHttpHandler } from '../use/http' ;
14
- import { createHandler as createExpressHandler } from '../use/express' ;
15
- import { createHandler as createFastifyHandler } from '../use/fastify' ;
16
- import { createHandler as createFetchHandler } from '../use/fetch' ;
17
- import { createHandler as createKoaHandler } from '../use/koa' ;
18
- import { createHandler as createUWSHandler } from '../use/uWebSockets' ;
14
+ import { createHandler as createHttpHandler } from '../src/ use/http' ;
15
+ import { createHandler as createExpressHandler } from '../src/ use/express' ;
16
+ import { createHandler as createFastifyHandler } from '../src/ use/fastify' ;
17
+ import { createHandler as createFetchHandler } from '../src/ use/fetch' ;
18
+ import { createHandler as createKoaHandler } from '../src/ use/koa' ;
19
+ import { createHandler as createUWSHandler } from '../src/ use/uWebSockets' ;
19
20
20
21
describe ( 'http' , ( ) => {
21
22
const [ url , , dispose ] = startDisposableServer (
@@ -48,7 +49,7 @@ describe('http', () => {
48
49
const res = await fetch ( url + '?query={hello}' ) ;
49
50
50
51
await expect ( res . text ( ) ) . resolves . toMatchInlineSnapshot (
51
- `"{ "data":{"hello": "world"}}"` ,
52
+ '"{\\ "data\\ ":{\\ "hello\\":\\ "world\\ "}}"' ,
52
53
) ;
53
54
expect ( res . headers . get ( 'x-test' ) ) . toBe ( 'test-x' ) ;
54
55
@@ -95,7 +96,7 @@ describe('express', () => {
95
96
const res = await fetch ( url + '?query={hello}' ) ;
96
97
97
98
await expect ( res . text ( ) ) . resolves . toMatchInlineSnapshot (
98
- `"{ "data":{"hello": "world"}}"` ,
99
+ '"{\\ "data\\ ":{\\ "hello\\":\\ "world\\ "}}"' ,
99
100
) ;
100
101
expect ( res . headers . get ( 'x-test' ) ) . toBe ( 'test-x' ) ;
101
102
@@ -154,7 +155,7 @@ describe('fastify', () => {
154
155
const res = await fetch ( url + '?query={hello}' ) ;
155
156
156
157
await expect ( res . text ( ) ) . resolves . toMatchInlineSnapshot (
157
- `"{ "data":{"hello": "world"}}"` ,
158
+ '"{\\ "data\\ ":{\\ "hello\\":\\ "world\\ "}}"' ,
158
159
) ;
159
160
expect ( res . headers . get ( 'x-test' ) ) . toBe ( 'test-x' ) ;
160
161
@@ -214,7 +215,7 @@ describe('koa', () => {
214
215
const res = await fetch ( url + '?query={hello}' ) ;
215
216
216
217
await expect ( res . text ( ) ) . resolves . toMatchInlineSnapshot (
217
- `"{ "data":{"hello": "world"}}"` ,
218
+ '"{\\ "data\\ ":{\\ "hello\\":\\ "world\\ "}}"' ,
218
219
) ;
219
220
expect ( res . headers . get ( 'x-test' ) ) . toBe ( 'test-x' ) ;
220
221
0 commit comments