We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93153ce commit fa855a3Copy full SHA for fa855a3
1 file changed
src/tests/test.test.js
@@ -1,5 +1,6 @@
1
-import { expect, test } from 'vitest'
+import { expect, test } from "vitest";
2
3
-test('Test runner is working', () => {
4
- expect(1 == 1)
5
-})
+test("Test runner is working", () => {
+ const a = 1
+ expect(a === 1);
6
+});
0 commit comments