General improvements #92

Merged
jsegarra merged 16 commits from wbuezas/hedera-web-mindshore:feature/GeneralImprovements into 4922-vueMigration 2024-11-25 12:47:25 +00:00
1 changed files with 11 additions and 0 deletions
Showing only changes of commit 8863b6428c - Show all commits

View File

@ -12,9 +12,20 @@ module.exports = defineConfig({
numTestsKeptInMemory: 0,
video: 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) {
require('cypress-mochawesome-reporter/plugin')(on);
on('after:spec', (spec, results) => {
console.log('Finished running', spec.relative);
console.log('❌spec:', results.stats.failures);
console.log('✅spec:', results.stats.passes);
});
}
}