Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 1.74 KB

CONTRIBUTING.md

File metadata and controls

42 lines (27 loc) · 1.74 KB

Contributing

If you are interested in contributing, I would be super happy for the help. This is not my full time job so please be patient if I am slow to respond.

If you are running into any issues, please open an issue before opening a pull request.

If you want to start in on an existing issue, please make a comment on it so we don't have two people working on the same issue

Testing

There are a few sets of JavaScript files that are required to run the tests in this repository.

NPM files

This set can be easily acquired by running npm install in the root of this project.

Spider Monkey Files

An additional test is also available behind a feature flag moz_central that requires the JIT Test files from the FireFox repository, the expectation is that these will exist in the folder moz-central in the root of this project. To get these files you can either manually download and unzip them by following this link or you can execute the following command.

curl https://hg.mozilla.org/mozilla-central/archive/tip.zip/js/src/jit-test/tests/ --output moz-central.zip
unzip -q moz-central.zip -d moz-central

To run these tests simply execute the following command.

cargo test --features moz_central -- moz_central

Test262

Another test that is feature gated due to the time it takes to run parses all 30,000+ files in the Test262 test suite. The expectation is that the test folder from that repository is in the root of the project with the name test262.

curl -L https://github.com/tc39/test262/zipball/master -o test262.zip
unzip -q test262.zip -d test262_full
mv ./test262_full/test ./test262