Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angus-c/es6-tests
unit tests for every es6 feature
https://github.com/angus-c/es6-tests
Last synced: about 1 month ago
JSON representation
unit tests for every es6 feature
- Host: GitHub
- URL: https://github.com/angus-c/es6-tests
- Owner: angus-c
- License: mit
- Created: 2015-05-05T03:16:01.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-05T17:04:43.000Z (over 9 years ago)
- Last Synced: 2024-04-20T12:19:32.618Z (7 months ago)
- Language: JavaScript
- Size: 258 KB
- Stars: 13
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# es6-tests
[![Build Status](https://secure.travis-ci.org/angus-c/es6-tests.png?branch=master)](http://travis-ci.org/angus-c/es6-tests)
Unit Tests for every ES6 feature (Work In Progress)
##Testing
```
npm test
```
##FAQ_Why are some tests skipped?_
I'm testing my tests using the wonderful [babel](http://babeljs.io/) transpiler. Their ES6 coverage is excellent [but not yet 100%](http://kangax.github.io/compat-table/es6/#babel). I'm skipping the tests that aren't yet covered so that Travis stays green.
_There's already an [excellent ES test suite](https://github.com/tc39/test262) Why bother writing another?_
I'm certainly not trying to compete with the great work of _test262_. This is purely to improve my own understanding of the ES6 spec – and I figure writing tests from scratch (with no cribbing) is the best way to achieve that.
_Can I contribute?_
I welcome issue reports (I'm sure there are plenty of errors, as I don't have time to be particularly thorough) and please let me know if I've missed any aspects of a new feature. However I'm not accepting Pull Requests for entire features, since I'm doing this for my own education (see above).