Skip to content

Commit f05b4ea

Browse files
committed
BAU: Fix imports for test file
The tests weren't able to run locally without the imports despite running successfully in GHA
1 parent ed01176 commit f05b4ea

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/handlers/tests/internal-server-error-handler.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { expect } from "chai";
2+
import { describe } from "mocha";
23
import type { NextFunction, Request, Response } from "express";
3-
import sinon from "sinon";
4+
import { sinon } from "../../../test/utils/test-utils.js";
45
import { ERROR_MESSAGES, HTTP_STATUS_CODES } from "../../app.constants.js";
56
import { serverErrorHandler } from "../internal-server-error-handler.js";
67
describe("serverErrorHandler", () => {

0 commit comments

Comments
 (0)