Skip to content

Commit b21d9a5

Browse files
committedApr 16, 2024
feat(e2e): improve types for $fetch
1 parent b61731f commit b21d9a5

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed
 

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
"eslint": "9.0.0",
8282
"h3": "1.11.1",
8383
"jiti": "1.21.0",
84+
"nitropack": "^2.9.6",
8485
"nuxt": "3.11.2",
8586
"playwright-core": "1.42.1",
8687
"rollup": "4.13.0",

‎pnpm-lock.yaml

+6-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/core/server.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { getRandomPort, waitForPort } from 'get-port-please'
33
import type { FetchOptions } from 'ofetch'
44
import { $fetch as _$fetch, fetch as _fetch } from 'ofetch'
55
import * as _kit from '@nuxt/kit'
6+
import type { $Fetch } from 'nitropack'
67
import { resolve } from 'pathe'
78
import { useTestContext } from './context'
89

@@ -78,9 +79,9 @@ export function fetch(path: string, options?: RequestInit) {
7879
return _fetch(url(path), options)
7980
}
8081

81-
export function $fetch(path: string, options?: FetchOptions) {
82+
export const $fetch = (function $fetch(path: string, options?: FetchOptions) {
8283
return _$fetch(url(path), options)
83-
}
84+
}) as $Fetch
8485

8586
export function url(path: string) {
8687
const ctx = useTestContext()

0 commit comments

Comments
 (0)
Please sign in to comment.