style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-17 10:11:42 +00:00
parent 087215c4fd
commit 8c338d8d56
3 changed files with 14 additions and 14 deletions

View file

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