Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upFeature: Using test262 CI data #10734
Comments
This comment has been minimized.
This comment has been minimized.
|
To add more technical information here, for future readers' sake: We're storing the test262 result artifacts in tap format in the form of If you want to get the latest master branch results, you can use https://github.com/babel/babel-test262-runner command npm i
node lib/download-master-artifact <optional file path>The flat tap format is convenient if in the future we might want to compress the data for transport. But in either case, there are various parsers which can give you a simple parsed JSON structure to work with. Examples include @tap-format/parser and tap-parser.. In fact, babel-test262-runner uses these under the hood. Another note, it may help to additionally save only the errors as that significantly reduces the size of data to deal with. We could potentially start saving them in CI and working off of that. |
Feature Request: Using our newly added test262 support!
Well many of the JS tools don't run test262 either, and this is just the first step for us (it would be a great community effort to bring this to other tools like TypeScript or bundlers like Webpack)
We can close out #4987 (3 years later) since via #10579 (thanks to amazing work of @jbhoosreddy and many others) we are able to run the
/languagesyntax tests of the official JavaScript test suite (called test262) on CI per PR (takes 30min). We had landedThis is more of a tracking issue to think about some ideas towards what we want to do with this moving forward (if there is something interesting maybe someone can writeup a more in-depth issue to track and link it here):