style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-24 14:57:01 +00:00
parent 4a6b6ee061
commit 437c2ba2fe
9 changed files with 170 additions and 170 deletions

View file

@ -1,8 +1,8 @@
import { describe, expect, it } from 'vitest';
import { ClassController } from '../../src/controllers/classes';
import { describe, expect, it } from "vitest";
import { ClassController } from "../../src/controllers/classes";
describe('Test controller classes', () => {
it('Get classes', async () => {
describe("Test controller classes", () => {
it("Get classes", async () => {
const controller = new ClassController();
const data = await controller.getAll(true);
expect(data.classes).to.have.length.greaterThan(0);