fabric.js/testem.json
Andrea Bogazzi 4bb1ffb9e6
removed old test setup (#5070)
* removed ol dep

* no build
2018-06-26 12:52:25 +02:00

33 lines
619 B
JSON

{
"framework": "qunit",
"serve_files": [
"dist/fabric.js",
"test/unit/*.js"
],
"routes": {
"/fixtures": "test/fixtures"
},
"test_page": "tests.mustache?hidepassed&hideskipped&timeout=60000",
"browser_args": {
"Chrome": [ "--headless", "--disable-gpu", "--remote-debugging-port=9222" ],
"Firefox": [ "--headless" ]
},
"launch_in_dev": [
"Chrome",
"Node",
"Firefox"
],
"launch_in_ci": [
"Chrome",
"Node",
"Firefox"
],
"launchers": {
"Node": {
"command": "npm run test",
"protocol": "tap"
}
},
"timeout": 540,
"parallel": 4
}