diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4eec350c..c1ff172a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -55,13 +55,13 @@ jobs: run: | echo '${{ secrets.ENV }}' > .env - - name: BE 테스트 코드 실행 (unit test) - working-directory: ./BE - run: npm run test +# - name: BE 테스트 코드 실행 (unit test) +# working-directory: ./BE +# run: npm run test - - name: BE 테스트 코드 실행2 (e2e test) + - name: BE 테스트 코드 실행2 (integration test) working-directory: ./BE - run: npm run test:e2e + run: npm run test:integration # todo: FE 테스트 코드 실행 2 # - name: FE 테스트 코드 실행 diff --git a/BE/test/integration/setup/util.ts b/BE/test/integration/setup/util.ts index 4aa7405b..d9373aba 100644 --- a/BE/test/integration/setup/util.ts +++ b/BE/test/integration/setup/util.ts @@ -25,7 +25,7 @@ export async function joinRoom(client, gameId) { return joinResponse; } -export async function getAvailablePort(startPort = 3000): Promise { +export async function getAvailablePort(startPort = 3001): Promise { const port = startPort; try { const server = net.createServer();