Javascript Test - Runner
About
Test Runner in Javascript.
See also: Javascript - Test Framework
Articles Related
List
Winner: Jest because:
- it's fully integrated in my IDE
- it supports React out of the box
- it can also test Typescript
- it forces you to not start a browser to test (jsdom)
- drawback as you are not importing any of its function, IDE parser may returns an error. bouh :(
List of test framework and the number of stars:
- jest (20000) - Jest is a testing platform for client-side JavaScript applications and React applications specifically.
- Javascript - Karma (Test runner) - Karma is essentially a tool which spawns a web server that executes source code against test code for each of the browsers connected with another test runner framework
- Mocha (17000)
- Javascript Test - Jasmine (13000)
- https://github.com/cypress-io/cypress (12590) - browser testing - used by Amplify react
- tape (4246) (Used by D3)
- Javascript - Qunit Test Framework (3702) (Used by Bootstrap)
- http://www.protractortest.org/#/ - Testing for angular