add a cypress scenario

This commit is contained in:
jfh
2020-09-13 01:32:13 +02:00
parent d15ee0fc3a
commit a61cfdf553
7 changed files with 2471 additions and 7 deletions

View File

@@ -2,6 +2,7 @@
// the project's config changing)
import codeCoverageTask from '@cypress/code-coverage/task.js';
import {initPlugin} from 'cypress-plugin-snapshots/plugin.js';
export default (on, config) => {
// `on` is used to hook into various events Cypress emits
@@ -12,5 +13,6 @@ export default (on, config) => {
// https://docs.cypress.io/guides/tooling/code-coverage.html#Install-the-plugin
codeCoverageTask(on, config);
initPlugin(on, config);
return config;
};