fabric.js/testem-visual.json
Andrea Bogazzi d95db41608
Better visual tests, test passing, more SVGs (#5076)
* improving golddens

* more tests

* test passing

* removed dist

* fixed travis

* make visual running in browser too

* more travis

* fixed travis

* fixed travis

* more coffee
2018-06-28 12:31:26 +02:00

34 lines
658 B
JSON

{
"framework": "qunit",
"serve_files": [
"dist/fabric.js",
"test/lib/pixelmatch.js",
"test/visual/*.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:visual",
"protocol": "tap"
}
},
"timeout": 540,
"parallel": 4
}