Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dijs/profx
Mutation Testing Library for Javascript
https://github.com/dijs/profx
Last synced: about 2 months ago
JSON representation
Mutation Testing Library for Javascript
- Host: GitHub
- URL: https://github.com/dijs/profx
- Owner: dijs
- Created: 2015-03-03T04:02:16.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-03T04:17:12.000Z (almost 10 years ago)
- Last Synced: 2024-01-02T08:06:22.131Z (about 1 year ago)
- Language: JavaScript
- Size: 125 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ProfX
A Mutant Testing Tool for Javascript### How to use
Currently, profx needs to be built into a build system. Plugins can be easily created to run the tool. The inputs are simply the source file and the test file for that source. Works best with source code that is already split into easily testable components.
**Do not use in production systems.**
**Use with version controlled projects only!**
#### Installation
```
npm install profx
```#### Code usage
```
var profx = require('profx');profx(, , function(err, score){
// Do things...
});```
#### TODO:
- Write tests for profx (Inception...)
- Make test runner agnostic (choose through config options)
- Create gulp and grunt plugins for profx