style: fix linting issues met lint-action

This commit is contained in:
Lint Action 2025-02-28 20:11:48 +00:00
parent 9f88737c48
commit aeab6aee61
14 changed files with 102 additions and 103 deletions

View file

@ -1,9 +1,9 @@
import { describe, it, expect } from "vitest";
import { describe, it, expect } from 'vitest';
describe("Sample test", () => {
it("should sum to 2", () => {
describe('Sample test', () => {
it('should sum to 2', () => {
const expected = 2;
const result = 1 + 1;
expect(result).toBe(expected);
});
})
});