Ari Perkkiö
Ari Perkkiö
Spent couple of more hours looking into this and I have no idea how to fix this. Even when source maps are enabled for the inlined deps, VSCode will not...
I'm running into same result but the import is coming from JS file and not CSS. @bluwy do you think this is a different issue and has different root cause?...
This is very likely related to how Vite SSR transform modifies the variables: https://github.com/ariperkkio/vite-ssr-transform-sourcemaps-issue/
Upstream issue open https://github.com/vitejs/vite/issues/18325
> (If so, filter test cases in a test file, I don't know how to do it, can you give me a hint? Thanks.) I'm not 100% sure, but the...
You can add test cases in the `_files` and `src/templates`, and then create a script in `package.json` that runs your test script. Then in the [`mainCommand`](https://tutorialkit.dev/reference/configuration/#maincommand) you can define this...
We don't yet provide any way for preventing users from proceeding the tutorials without completing previous lessons. I think for this feature we could add support for: 1. Run test...
I'm not really sure I understand what this issue is about. Could you show what's the output that you are seeing, and what you would like to see instead?
The `basic` reporter is being removed, as it's equal to `reporter: [ ["default", { summary: false }] ]`. What's the difference in output when you compare default reporter and your...
Do you see expected output when you have 2 test files? For example by adding `empty.test.ts` with following: ```ts import { test } from "vitest"; test("empty", () => {}); ```...