From 1d7ab03caf97f3b41d18b5b88b08d6c18abf2264 Mon Sep 17 00:00:00 2001 From: juancarmore Date: Thu, 3 Apr 2025 14:42:19 +0200 Subject: [PATCH] backend: Fix beforeEach import in room-security.test.ts file --- backend/tests/integration/api/security/room-security.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/tests/integration/api/security/room-security.test.ts b/backend/tests/integration/api/security/room-security.test.ts index 63334d8..a59de98 100644 --- a/backend/tests/integration/api/security/room-security.test.ts +++ b/backend/tests/integration/api/security/room-security.test.ts @@ -1,9 +1,8 @@ import request from 'supertest'; -import { describe, it, expect, beforeAll, afterAll } from '@jest/globals'; +import { describe, it, expect, beforeAll, beforeEach, afterAll } from '@jest/globals'; import { Express } from 'express'; import { startTestServer, stopTestServer } from '../../../utils/server-setup.js'; import { AuthMode, AuthType } from '../../../../src/typings/ce/index.js'; -import { beforeEach } from 'node:test'; const BASE_URL = '/meet/api/v1'; const INTERNAL_BASE_URL = '/meet/internal-api/v1';