Add build before the visual regression testing

This commit is contained in:
CJ Patoilo 2020-05-21 01:00:57 -03:00
parent d2d478a0b5
commit a18bb5029b
1 changed files with 3 additions and 3 deletions

View File

@ -57,9 +57,9 @@
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
"start": "run-p build watch serve",
"test": "npm run build && nyc ava",
"visual-regression": "run-s build && run-p serve visual-regression:compare",
"visual-regression:compare": "backstop test --config backstop.config.js",
"visual-regression:reference": "backstop reference --config backstop.config.js",
"visual-regression": "run-p serve visual-regression:compare",
"visual-regression:compare": "run-s build && backstop test --config backstop.config.js",
"visual-regression:reference": "run-s build && backstop reference --config backstop.config.js",
"watch": "onchange src -- run-p build"
},
"engines": {