Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
j-maynard committed Sep 19, 2024
1 parent 4c1cc79 commit 6d5043b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion src/routes/publish.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Blob } from 'buffer';

import { Request, Response, Router } from 'express';
import { Response, Router } from 'express';
import multer from 'multer';

import { logger } from '../utils/logger';
Expand Down
3 changes: 0 additions & 3 deletions test/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import request from 'supertest';
import { Request, Response, NextFunction } from 'express';
import { http, HttpResponse } from 'msw';
import { setupServer } from 'msw/node';
import { CookieAccessInfo } from 'cookiejar';
import supertest from 'supertest';

import { ENGLISH, WELSH, i18next } from '../src/middleware/translation';
import app from '../src/app';
Expand All @@ -19,7 +17,6 @@ declare module 'express-session' {
}

const t = i18next.t;
let sessionCookies: string;

jest.mock('../src/middleware/ensure-authenticated', () => ({
ensureAuthenticated: (req: Request, res: Response, next: NextFunction) => next()
Expand Down

0 comments on commit 6d5043b

Please sign in to comment.