fabric.js/testem.json
Andrea Bogazzi 9a734a36b9
Add visual test suites draft (#5068)
* adding visual tests

* working setup

* test travis setup

* unbuilt

* maybe we do not need this

* maybe this

* maybe we do not need this
2018-06-26 11:41:03 +02:00

33 lines
624 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:node",
"protocol": "tap"
}
},
"timeout": 540,
"parallel": 4
}