This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"main": [ | |
[ | |
1615593600000, | |
3.6231884057971016 | |
], | |
[ | |
1615597200000, | |
2.631578947368421 | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"pluginsFile": "tests/plugins/index.js" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const customConfig = require('../cypress.config'); | |
module.exports = (on, config) => Object.assign({}, config, customConfig); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"test": "cypress_mode=integration cypress run", | |
"test:selective": "cypress_mode=integration cypress open", | |
"report:merge": "mochawesome-merge --reportDir tests/results/json/* > tests/results/merged-tests.json", | |
"report:generate": "marge tests/results/merged-tests.json -o tests/results/html" | |
}, |