UNPKG

smdm-slide-menu

Version:

A library agnostic multilevel page menu with a smooth slide effect based on CSS transitions, focused on accessibility.

21 lines (18 loc) 523 B
const { defineConfig } = require('cypress'); const { pa11y, prepareAudit } = require('@cypress-audit/pa11y'); module.exports = defineConfig({ e2e: { baseUrl: 'https://google.com', supportFile: './cypress/support/e2e.js', testIsolation: false, setupNodeEvents(on, config) { // implement node event listeners here on('before:browser:launch', (browser = {}, launchOptions) => { prepareAudit(launchOptions); }); on('task', { pa11y: pa11y(), }); }, }, });