Failed to load url ../.vscode/extensions/vitest.explorer-0.5.15/dist/setupFile.mjs even though that file exists? #337
-
Updating to the pre-release v0.5.15 I get the following when using in-source testing: But the file exists:
The in-source test is similar to:
When attempting to run the file, nothing is output in the "Vitest" output channel. Running the test manually with vitest works as expected. Anyone else observed this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Hmm... This seems to happen even moving the test out into it's own file. :-\ |
Beta Was this translation helpful? Give feedback.
-
Just to test a theory, does adding export default defineConfig({
server: {
fs: {
strict: false,
}
}
}) |
Beta Was this translation helpful? Give feedback.
Just to test a theory, does adding
server.fs.strict: false
to the config helps?