Fixed tests

This commit is contained in:
Martin Berg Alstad 2023-06-02 18:03:42 +02:00
parent 209a33830d
commit 287d8ebe5e
2 changed files with 9 additions and 7 deletions

View File

@ -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"

View File

@ -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", () => {