5a833bd982
- Moved benchmark to test/benchmark - Moved tests to test/spec - Removed individual servers - Implemented single test server - Moved server assets to test/server - Updated Gulpfile.js - Moved tools/impact to test/impact This commit move's nearly all code related to testing the PEG.js module into the test directory, and also ensures they run as they did before the move. |
||
---|---|---|
.. | ||
api | ||
behavior | ||
unit | ||
.eslintrc.json | ||
README.md |
PEG.js Test Suite
This is the PEG.js test suite. It ensures PEG.js works correctly. All tests should always pass on all supported platforms.
Running in Node.js
All commands in the following steps need to be executed in PEG.js root directory (one level up from this one).
-
Install all PEG.js dependencies, including development ones:
$ npm install
-
Execute the test suite:
$ gulp test
-
Watch the tests pass (or fail).
Running in the Browser
All commands in the following steps need to be executed in PEG.js root directory (one level up from this one).
-
Make sure you have Node.js installed.
-
Install all PEG.js dependencies, including development ones:
$ npm install
-
Serve the test suite using a web server:
$ test/server
-
Point your browser to the test suite.
-
Watch the tests pass (or fail).