Skip to content

Commit fa855a3

Browse files
author
Alex Surtees
committed
Linting
1 parent 93153ce commit fa855a3

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/tests/test.test.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import { expect, test } from 'vitest'
1+
import { expect, test } from "vitest";
22

3-
test('Test runner is working', () => {
4-
expect(1 == 1)
5-
})
3+
test("Test runner is working", () => {
4+
const a = 1
5+
expect(a === 1);
6+
});

0 commit comments

Comments
 (0)