From 287d8ebe5e7e0f7793a1e1f8b4c3a7a6576ba8d5 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Fri, 2 Jun 2023 18:03:42 +0200 Subject: [PATCH] Fixed tests --- pac-man-board-game/ClientApp/package-lock.json | 12 ++++++------ .../tests/game/possibleMovesAlgorithm.test.ts | 4 +++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/pac-man-board-game/ClientApp/package-lock.json b/pac-man-board-game/ClientApp/package-lock.json index 59c5db4..2a213ba 100644 --- a/pac-man-board-game/ClientApp/package-lock.json +++ b/pac-man-board-game/ClientApp/package-lock.json @@ -15,28 +15,28 @@ "process": "^0.11.10", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-router-dom": "^6.9.0", + "react-router-dom": "^6.11.2", "web-vitals": "^2.1.4" }, "devDependencies": { - "@types/react": "^18.2.6", + "@types/react": "^18.2.7", "@types/react-dom": "^18.2.4", "@vitejs/plugin-react": "^4.0.0", "ajv": "^8.12.0", "autoprefixer": "^10.4.14", "cross-env": "^7.0.3", - "eslint": "^8.40.0", + "eslint": "^8.41.0", "eslint-config-react-app": "^7.0.1", "eslint-plugin-flowtype": "^8.0.3", "eslint-plugin-import": "^2.27.5", "eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-react": "^7.32.2", - "happy-dom": "^9.20.1", + "happy-dom": "^9.20.3", "nan": "^2.17.0", - "postcss": "^8.4.23", + "postcss": "^8.4.24", "tailwindcss": "^3.3.2", "typescript": "^5.0.4", - "vite": "^4.3.6", + "vite": "^4.3.9", "vite-plugin-svgr": "^3.2.0", "vite-tsconfig-paths": "^4.2.0", "vitest": "^0.31.1" diff --git a/pac-man-board-game/ClientApp/tests/game/possibleMovesAlgorithm.test.ts b/pac-man-board-game/ClientApp/tests/game/possibleMovesAlgorithm.test.ts index bf24299..45a3b5e 100644 --- a/pac-man-board-game/ClientApp/tests/game/possibleMovesAlgorithm.test.ts +++ b/pac-man-board-game/ClientApp/tests/game/possibleMovesAlgorithm.test.ts @@ -7,7 +7,9 @@ import {Direction} from "../../src/game/direction"; let pacMan: Character; beforeEach(() => { - pacMan = new PacMan("yellow", {end: {x: 3, y: 3}, direction: Direction.up}); + pacMan = new PacMan({ + colour: "yellow", spawnPosition: {at: {x: 3, y: 3}, direction: Direction.up} + }); }); test("Pac-Man rolls one from start, should return one position", () => {