Commit 20303158 authored by Caleb C. Sander's avatar Caleb C. Sander
Browse files

Initial commit

parents
No related merge requests found
Showing with 32 additions and 0 deletions
+32 -0
node_modules
# Project 4 - Wiki Game
## Spec
The spec for this project can be found at [wiki-game.md](https://gitlab.caltech.edu/cs11-async/documents/blob/master/specs/wiki-game/wiki-game.md).
## Testing infrastructure
Several tests are provided in `tests/test.js`.
They try your `find-path.js` on various inputs.
To run them, you need to run `npm install` once and then `npm test` each time you want to run the tests.
Since Wikipedia can be edited at any time, the expected paths may become outdated.
I computed the lists of possible paths on 2020-03-31, so hopefully this isn't an issue.
Please let me know if you think you've found a valid path that is failing a test case; I can update the tests.
{
"name": "@cs11-async/wiki-game",
"version": "1.0.0",
"description": "CS 11 Asynchronous Programming - Wiki Game",
"scripts": {
"test": "ava --verbose --timeout=10m tests/test.js"
},
"repository": {
"type": "git",
"url": "git@gitlab.caltech.edu:cs11-async/wiki-game.git"
},
"license": "MIT",
"devDependencies": {
"ava": "^3.5.0"
}
}
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment