You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lessons/07-testing/A-vitest.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ Let's go add an npm script. In your package.json.
44
44
45
45
> Fun trick: if you call it test, npm lets you run that command as just `npm t`.
46
46
47
-
This command lets you run Jest in an interactive mode where it will re-run tests selectively as you save them. This lets you get instant feedback if your test is working or not. This is probably my favorite feature of Vitest.
47
+
This command lets you run Vitest in an interactive mode where it will re-run tests selectively as you save them. This lets you get instant feedback if your test is working or not. This is probably my favorite feature of Vitest.
48
48
49
49
Okay, one little configuration to add to your `vite.config.js`.
50
50
@@ -67,4 +67,4 @@ Now that we've got that going, let's go write a test.
0 commit comments