1
0
mirror of https://github.com/lancedikson/bowser synced 2026-03-02 03:40:27 +00:00

Add testem as a main test runner

This commit is contained in:
Denis Demchenko
2017-06-08 22:23:27 +03:00
parent 19646053ce
commit 0694b30fc6
2 changed files with 17 additions and 2 deletions

14
.testem.json Normal file
View File

@@ -0,0 +1,14 @@
{
"framework": "custom",
"src_files": [
"src/**/*.js",
"test/**/*.js"
],
"launchers": {
"tap": {
"command": "ava test/**/*.js --tap",
"protocol": "tap"
}
},
"launch_in_dev": [ "tap" ]
}