diff --git a/.github/workflows/backend-integration-test.yaml b/.github/workflows/backend-integration-test.yaml index 105b1324..ec08754d 100644 --- a/.github/workflows/backend-integration-test.yaml +++ b/.github/workflows/backend-integration-test.yaml @@ -38,7 +38,7 @@ jobs: fail-fast: false matrix: include: - - test-name: 'Room Management API Tests (Rooms, Meetings)' + - test-name: 'Room Management API Tests (Rooms, Room Members, Meetings)' test-script: 'test:integration-backend-room-management' - test-name: 'Webhook Tests' test-script: 'test:integration-backend-webhooks' diff --git a/meet-ce/backend/package.json b/meet-ce/backend/package.json index 97753f7c..7395ca59 100644 --- a/meet-ce/backend/package.json +++ b/meet-ce/backend/package.json @@ -35,8 +35,9 @@ "start:dev": "NODE_ENV=development concurrently -k -n server,typecheck -c cyan,yellow \"pnpm tsx watch --clear-screen=false --include src ./src/server.ts\" \"pnpm run dev:typecheck\"", "dev:typecheck": "node ../../scripts/dev/backend-type-checker.mjs", "package:build": "pnpm run build:prod && pnpm pack", - "test:integration-room-management": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --runInBand --forceExit --testPathPattern \"tests/integration/api/(rooms|meetings)\" --ci --reporters=default --reporters=jest-junit", + "test:integration-room-management": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --runInBand --forceExit --testPathPattern \"tests/integration/api/(rooms|room-members|meetings)\" --ci --reporters=default --reporters=jest-junit", "test:integration-rooms": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --runInBand --forceExit --testPathPattern 'tests/integration/api/rooms' --ci --reporters=default --reporters=jest-junit", + "test:integration-room-members": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --runInBand --forceExit --testPathPattern 'tests/integration/api/rooms-members' --ci --reporters=default --reporters=jest-junit", "test:integration-meetings": "node --experimental-vm-modules ../../node_modules/.bin/jest --runInBand --forceExit --testPathPattern \"tests/integration/api/meetings\" --ci --reporters=default --reporters=jest-junit", "test:integration-webhooks": "node --experimental-vm-modules ../../node_modules/.bin/jest --runInBand --forceExit --testPathPattern \"tests/integration/webhooks\" --ci --reporters=default --reporters=jest-junit", "test:integration-auth-security": "node --experimental-vm-modules ../../node_modules/.bin/jest --runInBand --forceExit --testPathPattern \"tests/integration/api/(security|auth|api-keys|users)\" --ci --reporters=default --reporters=jest-junit",