From 7c4e9f61658f1ae32bb016b9d06880e95dd36970 Mon Sep 17 00:00:00 2001 From: UO283216 <98907723+UO283216@users.noreply.github.com> Date: Tue, 2 May 2023 02:58:27 +0200 Subject: [PATCH] Fix halt --- webapp/e2e/steps/add-friend.steps.ts | 2 +- webapp/e2e/steps/add-location.steps.ts | 2 +- webapp/e2e/steps/game.steps.ts | 2 +- webapp/e2e/steps/menu.steps.ts | 2 +- webapp/e2e/steps/profile.steps.ts | 2 +- webapp/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/webapp/e2e/steps/add-friend.steps.ts b/webapp/e2e/steps/add-friend.steps.ts index bbf0103..64a58ce 100644 --- a/webapp/e2e/steps/add-friend.steps.ts +++ b/webapp/e2e/steps/add-friend.steps.ts @@ -72,7 +72,7 @@ defineFeature(feature, test => { }) afterAll(async ()=>{ - + browser.close() }) }); \ No newline at end of file diff --git a/webapp/e2e/steps/add-location.steps.ts b/webapp/e2e/steps/add-location.steps.ts index 5f5fe87..d86e4cd 100644 --- a/webapp/e2e/steps/add-location.steps.ts +++ b/webapp/e2e/steps/add-location.steps.ts @@ -79,7 +79,7 @@ defineFeature(feature, test => { }) afterAll(async ()=>{ - + browser.close() }) }); \ No newline at end of file diff --git a/webapp/e2e/steps/game.steps.ts b/webapp/e2e/steps/game.steps.ts index 283ebde..80484c9 100644 --- a/webapp/e2e/steps/game.steps.ts +++ b/webapp/e2e/steps/game.steps.ts @@ -59,7 +59,7 @@ defineFeature(feature, test => { }) afterAll(async ()=>{ - + browser.close() }) }); \ No newline at end of file diff --git a/webapp/e2e/steps/menu.steps.ts b/webapp/e2e/steps/menu.steps.ts index 1146f05..0704b87 100644 --- a/webapp/e2e/steps/menu.steps.ts +++ b/webapp/e2e/steps/menu.steps.ts @@ -60,7 +60,7 @@ defineFeature(feature, test => { }) afterAll(async ()=>{ - + browser.close() }) }); \ No newline at end of file diff --git a/webapp/e2e/steps/profile.steps.ts b/webapp/e2e/steps/profile.steps.ts index 1044fef..2a3f988 100644 --- a/webapp/e2e/steps/profile.steps.ts +++ b/webapp/e2e/steps/profile.steps.ts @@ -59,7 +59,7 @@ defineFeature(feature, test => { }) afterAll(async ()=>{ - + browser.close() }) }); \ No newline at end of file diff --git a/webapp/package.json b/webapp/package.json index e658111..52206cc 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -36,7 +36,7 @@ "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test --coverage", - "test:e2e": "start-server-and-test prod 3000 \"cd e2e && jest\"", + "test:e2e": "start-server-and-test prod 3000 \"cd e2e && jest\"", "eject": "react-scripts eject", "prod": "ts-node-dev ./server.ts" },