You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cb3c5f4473
Currently, an open brace without a corresponding brace will emit this confusing error message: > Expected "!", "$", "&", "(", "*", "+", ".", "/", "/*", "//", ";", "?", character class, code block, comment, end of line, identifier, literal, or whitespace but "{" found. This change adds an error case to the grammar to make it clear what the problem is. |
7 years ago | |
---|---|---|
.. | ||
api | 7 years ago | |
behavior | 7 years ago | |
unit | 7 years ago | |
vendor/mocha | 8 years ago | |
.eslintrc.json | 7 years ago | |
README.md | 8 years ago | |
index.html | 8 years ago | |
server | 8 years ago |
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).