Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dancespiele/js-assessment
https://github.com/dancespiele/js-assessment
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dancespiele/js-assessment
- Owner: dancespiele
- Created: 2018-11-14T01:34:59.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-14T10:42:15.000Z (almost 6 years ago)
- Last Synced: 2024-10-10T05:35:23.605Z (28 days ago)
- Language: JavaScript
- Size: 202 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A test-driven JS assessment
## I want to work on the tests; what do I do?
To use the tests, you will need to install Node -- you can do this via the
[download page](http://nodejs.org/#download) or using
[Homebrew](http://mxcl.github.com/homebrew/) if you are on a Mac.Note that on Windows, there are some reports that you will need to restart
after installing Noderun:
npm install
npm install -g grunt-cli
grunt developYou can then view the tests in your browser at
[http://localhost:4444](http://localhost:4444).When you visit that page, all of the tests should be failing; your job is to
get the tests to pass. To do this, you'll need to refer to the tests in the
files in the `tests/app` directory, and edit the files in the `app/` directory.
Once you update a test, you can reload the test page in the browser to see
whether it worked.You can also run (most of) the tests on the command line:
npm test