Skip to content

Commit d4be49c

Browse files
committed
move test out of src folder
1 parent c0f9b0a commit d4be49c

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

packages/kit/test/apps/basics/src/routes/remote/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
set_count_server,
99
resolve_deferreds
1010
} from './query-command.remote.js';
11-
import { external } from '../../external-remotes/allowed.remote.js';
11+
import { external } from '../../../external-remotes/allowed.remote.js';
1212
1313
let { data } = $props();
1414

packages/kit/test/apps/basics/svelte.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const config = {
4545
resolution: /** @type {'client' | 'server'} */ (process.env.ROUTER_RESOLUTION) || 'client'
4646
},
4747
remoteFunctions: {
48-
allowedPaths: ['src/external-remotes']
48+
allowedPaths: ['./external-remotes']
4949
}
5050
}
5151
};

packages/kit/test/apps/basics/vite.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const config = {
1515
plugins: [sveltekit()],
1616
server: {
1717
fs: {
18-
allow: [path.resolve('../../../src')]
18+
allow: [path.resolve('../../../src'), path.resolve('external-remotes')]
1919
}
2020
}
2121
};

0 commit comments

Comments
 (0)