Fixed tests
This commit is contained in:
parent
209a33830d
commit
287d8ebe5e
12
pac-man-board-game/ClientApp/package-lock.json
generated
12
pac-man-board-game/ClientApp/package-lock.json
generated
@ -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"
|
||||
|
@ -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", () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user