* Move PEG.js from . to packages/pegjs * Update relevanr paths * Remove pegjs-dev; Use pegjs directly * Generate browser files at packages/pegjs/dist * nyc: exclude website * website: keep packages folder * Root package.json is private now
2 KiB
PEG.js Test Suites
This directory contains various test suites and scripts to ensure PEG.js works correctly.
- Spec Suite: Runs various test's that ensure PEG.js and it's generated parsers are working as intended. All tests should always pass on all supported platforms.
- Benchmark Suite: It measures speed of the parsers generated by PEG.js on various inputs. Its main goal is to provide data for code generator optimizations.
- Impact Script: Measures impact of a Git commit (or multiple commits) on generated parsers speed and size.
Download and Install
To run the PEG.js test suites you most download the and install the module via the git repository:
-
Make sure you have Node.js and Git installed.
-
Download via Git and change the currently working directory:
$ git clone https://github.com/pegjs/pegjs.git $ cd pegjs
-
Install all dependencies, including the development dependencies:
$ npm install
-
Install Gulp globally:
$ npm install gulp -g
-
Processed...
Running in Node.js
The commands below need to be executed via the console from the PEG.js root directory (one level up from this one), after which they will output their results (if any).
-
Execute source code linting:
$ gulp lint
-
Execute the spec test suite:
$ gulp test
-
Execute the benchmark suite:
$ gulp benchmark
-
Execute the impact suite:
$ node test/impact
Running in the Browser
You also have the option of running the website locally by running node server.js
or npm start
from the root of this repository. After that just go to the development page and click the link Benchmark Suite
or Spec Suite
.