style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-05-04 12:09:43 +00:00
parent ac4ece29c7
commit 71f20526f1
15 changed files with 15 additions and 18 deletions

View file

@ -1,7 +1,7 @@
import { setupTestApp } from '../setup-tests.js';
import { describe, it, expect, beforeAll, beforeEach, vi, Mock } from 'vitest';
import { Request, Response } from 'express';
import {createClassHandler, deleteClassHandler} from "../../src/controllers/classes";
import { createClassHandler, deleteClassHandler } from '../../src/controllers/classes';
describe('Class controllers', () => {
let req: Partial<Request>;
@ -44,6 +44,4 @@ describe('Class controllers', () => {
expect(jsonMock).toHaveBeenCalledWith(expect.objectContaining({ class: expect.anything() }));
});
});