From 71d2a4455136eefffd7a6b3987d8530948f4b0f6 Mon Sep 17 00:00:00 2001 From: Lordfirespeed <28568841+Lordfirespeed@users.noreply.github.com> Date: Tue, 16 Jul 2024 12:10:28 +0100 Subject: [PATCH] chore: replace import from `chai` with import from `vitest` --- tests/utils/mock.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/mock.ts b/tests/utils/mock.ts index 4cf69c2..aa311ca 100644 --- a/tests/utils/mock.ts +++ b/tests/utils/mock.ts @@ -3,7 +3,7 @@ import type { Request, Response } from "@tinyhttp/app" import { parse } from "@tinyhttp/cookie" import { cookieParser, signedCookie } from "@tinyhttp/cookie-parser" /* eslint-disable @typescript-eslint/no-unsafe-assignment */ -import { assert } from "chai" +import { assert } from "vitest" import { COOKIE_SECRET, HEADER_KEY } from "./constants.js" import { getCookieFromRequest, getCookieValueFromResponse } from "./helpers.js"