boardgameio / boardgame.io

State Management and Multiplayer Networking for Turn-Based Games
https://boardgame.io
MIT License
9.97k stars 705 forks source link

Lint/Test errors #501

Closed danielimmke closed 4 years ago

danielimmke commented 4 years ago

Hey Nicolo, I am trying to work on my branch but getting some errors after pulling master in.

boardgame.io/src/client/client.test.js 17:10 error 'RandomBot' is defined but never used no-unused-vars

And also:

● Validation Error:

Module jest-transform-svelte in the transform option was not found.

When running Jest tests. I'm sure you would find these eventually but logging them just in case.

nicolodavis commented 4 years ago

Thanks!

The RandomBot error should be fixed.

I'm not sure the jest-transform-svelte thing is an actual problem. My suspicion is that you haven't done an npm install after the dependency was added. Can you re-run npm install and check if it works?

danielimmke commented 4 years ago

Yup - that was it. Thanks!