Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/babel/babel-test262-runner
Run test262 tests on Node 0.10 using Babel 7 and `core-js@3`.
https://github.com/babel/babel-test262-runner
Last synced: 3 months ago
JSON representation
Run test262 tests on Node 0.10 using Babel 7 and `core-js@3`.
- Host: GitHub
- URL: https://github.com/babel/babel-test262-runner
- Owner: babel
- License: mit
- Created: 2019-01-28T22:20:07.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-04-05T07:10:09.000Z (9 months ago)
- Last Synced: 2024-04-14T02:33:05.350Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 6.93 MB
- Stars: 6
- Watchers: 9
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Babel Test262
> NOTE: Only linux64 and darwin64 are currently supported.
Run test262 tests on Node 0.10 using Babel 7 and `core-js@3`.
## Installation
```
git clone [url of this repo] --recursive --shallow-submodules
cd babel-test262-runner
node lib/download-node
```## Run tests
```
node lib/run-tests [pattern]
````[pattern]` must be a substring of the path of the tests to run. For example:
```
node lib/run-tests arrow-function
```If you want to run **all** the tests, run
```
node lib/run-tests I_AM_SURE
```If you want to run against a local copy of babel repo (useful for debugging):
```
BABEL_PATH=../babel node lib/run-tests [pattern]
```## Download babel/babel master test262 artifact
```
node lib/download-master-artifact
```## Compare results with master
```
node lib/compare-results
```