Skip to content

Commit 761cb2b

Browse files
committed
revert modified test using base-path
1 parent 714bafc commit 761cb2b

File tree

2 files changed

+2
-2
lines changed
  • packages/kit/test/apps

2 files changed

+2
-2
lines changed

packages/kit/test/apps/basics/src/routes/load/static-file-with-hash/+page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @type {import('./$types').PageLoad} */
22
export async function load({ fetch }) {
3-
// @ts-expect-error, path does not exist what is this??
3+
// @ts-ignore, path does not exist what is this??
44
const res = await fetch('/load/assets/a#b.txt');
55
return {
66
status: res.status
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// TODO 2.0: Delete
22
/** @type {import('./$types').PageServerLoad} */
33
export async function load({ fetch }) {
4-
const res = await fetch('/server-fetch-invalidate/count.json');
4+
const res = await fetch('/paths-base/server-fetch-invalidate/count.json');
55
return res.json();
66
}

0 commit comments

Comments
 (0)