forked from verdnatura/hedera-web
feat: cypress reporter
This commit is contained in:
parent
f27dd79dcc
commit
8863b6428c
|
@ -12,9 +12,20 @@ module.exports = defineConfig({
|
||||||
numTestsKeptInMemory: 0,
|
numTestsKeptInMemory: 0,
|
||||||
video: false,
|
video: false,
|
||||||
screenshotOnRunFailure: false,
|
screenshotOnRunFailure: false,
|
||||||
|
reporter: 'cypress-mochawesome-reporter',
|
||||||
|
reporterOptions: {
|
||||||
|
charts: true,
|
||||||
|
reportPageTitle: 'Hedera-Web E2E Reporter',
|
||||||
|
embeddedScreenshots: true,
|
||||||
|
reportDir: 'src/test/cypress/reports',
|
||||||
|
inlineAssets: true
|
||||||
|
},
|
||||||
setupNodeEvents(on, config) {
|
setupNodeEvents(on, config) {
|
||||||
|
require('cypress-mochawesome-reporter/plugin')(on);
|
||||||
on('after:spec', (spec, results) => {
|
on('after:spec', (spec, results) => {
|
||||||
console.log('Finished running', spec.relative);
|
console.log('Finished running', spec.relative);
|
||||||
|
console.log('❌spec:', results.stats.failures);
|
||||||
|
console.log('✅spec:', results.stats.passes);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue