├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── pnpm │ │ └── action.yml └── workflows │ └── testing-ci.yml ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── examples ├── cra-authenticated │ ├── .gitignore │ ├── README.md │ ├── cypress-audit.gif │ ├── cypress.config.js │ ├── cypress.png │ ├── cypress │ │ ├── e2e │ │ │ └── home.cy.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ ├── lighthouse.png │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.js │ │ ├── components │ │ └── Layout.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages │ │ ├── Dashboard.js │ │ └── Index.js │ │ └── setupTests.js ├── external-url │ ├── cypress.config.js │ ├── cypress │ │ ├── e2e │ │ │ └── main.cy.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── e2e.js │ └── package.json └── nextjs │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── cypress.config.js │ ├── cypress │ ├── e2e │ │ └── homepage.cy.js │ └── support │ │ ├── commands.js │ │ └── e2e.js │ ├── jsconfig.json │ ├── next.config.js │ ├── package.json │ ├── pages │ ├── _app.js │ ├── _document.js │ ├── api │ │ └── hello.js │ └── index.js │ ├── public │ ├── favicon.ico │ ├── next.svg │ ├── thirteen.svg │ └── vercel.svg │ └── styles │ ├── Home.module.css │ └── globals.css ├── lerna.json ├── package.json ├── packages ├── documentation │ ├── .gitignore │ ├── docs │ │ ├── .vuepress │ │ │ ├── config.js │ │ │ └── styles │ │ │ │ └── palette.styl │ │ ├── README.md │ │ ├── examples.md │ │ ├── guides │ │ │ ├── lighthouse │ │ │ │ ├── api-intro.md │ │ │ │ ├── command-api.md │ │ │ │ ├── global-api.md │ │ │ │ ├── good-to-know.md │ │ │ │ ├── installation.md │ │ │ │ ├── lh.png │ │ │ │ └── reports.md │ │ │ └── pa11y │ │ │ │ ├── api.md │ │ │ │ ├── installation.md │ │ │ │ └── pally.png │ │ └── start-with-why.md │ └── package.json ├── lighthouse │ ├── commands.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ └── src │ │ ├── __tests__ │ │ ├── command-handler.spec.js │ │ └── helpers.spec.js │ │ ├── command-handler.js │ │ ├── helpers.js │ │ ├── prepare-audit.js │ │ └── task.js └── pa11y │ ├── commands.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ └── src │ ├── __tests__ │ └── command-handler.spec.js │ ├── command-handler.js │ ├── prepare-audit.js │ └── task.js ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.eslintignore: -------------------------------------------------------------------------------- 1 | *.d.ts 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/pnpm/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/.github/actions/pnpm/action.yml -------------------------------------------------------------------------------- /.github/workflows/testing-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/.github/workflows/testing-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | screenshots 3 | videos 4 | coverage -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | coverage -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/README.md -------------------------------------------------------------------------------- /examples/cra-authenticated/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/.gitignore -------------------------------------------------------------------------------- /examples/cra-authenticated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/README.md -------------------------------------------------------------------------------- /examples/cra-authenticated/cypress-audit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/cypress-audit.gif -------------------------------------------------------------------------------- /examples/cra-authenticated/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/cypress.config.js -------------------------------------------------------------------------------- /examples/cra-authenticated/cypress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/cypress.png -------------------------------------------------------------------------------- /examples/cra-authenticated/cypress/e2e/home.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/cypress/e2e/home.cy.js -------------------------------------------------------------------------------- /examples/cra-authenticated/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/cypress/support/commands.js -------------------------------------------------------------------------------- /examples/cra-authenticated/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/cypress/support/e2e.js -------------------------------------------------------------------------------- /examples/cra-authenticated/lighthouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/lighthouse.png -------------------------------------------------------------------------------- /examples/cra-authenticated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/package.json -------------------------------------------------------------------------------- /examples/cra-authenticated/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/public/favicon.ico -------------------------------------------------------------------------------- /examples/cra-authenticated/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/public/index.html -------------------------------------------------------------------------------- /examples/cra-authenticated/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/public/logo192.png -------------------------------------------------------------------------------- /examples/cra-authenticated/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/public/logo512.png -------------------------------------------------------------------------------- /examples/cra-authenticated/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/public/manifest.json -------------------------------------------------------------------------------- /examples/cra-authenticated/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/public/robots.txt -------------------------------------------------------------------------------- /examples/cra-authenticated/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/src/App.js -------------------------------------------------------------------------------- /examples/cra-authenticated/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/src/components/Layout.js -------------------------------------------------------------------------------- /examples/cra-authenticated/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/src/index.css -------------------------------------------------------------------------------- /examples/cra-authenticated/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/src/index.js -------------------------------------------------------------------------------- /examples/cra-authenticated/src/pages/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/src/pages/Dashboard.js -------------------------------------------------------------------------------- /examples/cra-authenticated/src/pages/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/src/pages/Index.js -------------------------------------------------------------------------------- /examples/cra-authenticated/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/cra-authenticated/src/setupTests.js -------------------------------------------------------------------------------- /examples/external-url/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/external-url/cypress.config.js -------------------------------------------------------------------------------- /examples/external-url/cypress/e2e/main.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/external-url/cypress/e2e/main.cy.js -------------------------------------------------------------------------------- /examples/external-url/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/external-url/cypress/support/commands.js -------------------------------------------------------------------------------- /examples/external-url/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/external-url/cypress/support/e2e.js -------------------------------------------------------------------------------- /examples/external-url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/external-url/package.json -------------------------------------------------------------------------------- /examples/nextjs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/.eslintrc.js -------------------------------------------------------------------------------- /examples/nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/.gitignore -------------------------------------------------------------------------------- /examples/nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/README.md -------------------------------------------------------------------------------- /examples/nextjs/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/cypress.config.js -------------------------------------------------------------------------------- /examples/nextjs/cypress/e2e/homepage.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/cypress/e2e/homepage.cy.js -------------------------------------------------------------------------------- /examples/nextjs/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/cypress/support/commands.js -------------------------------------------------------------------------------- /examples/nextjs/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/cypress/support/e2e.js -------------------------------------------------------------------------------- /examples/nextjs/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/jsconfig.json -------------------------------------------------------------------------------- /examples/nextjs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/next.config.js -------------------------------------------------------------------------------- /examples/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/package.json -------------------------------------------------------------------------------- /examples/nextjs/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/pages/_app.js -------------------------------------------------------------------------------- /examples/nextjs/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/pages/_document.js -------------------------------------------------------------------------------- /examples/nextjs/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/pages/api/hello.js -------------------------------------------------------------------------------- /examples/nextjs/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/pages/index.js -------------------------------------------------------------------------------- /examples/nextjs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/public/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/public/next.svg -------------------------------------------------------------------------------- /examples/nextjs/public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/public/thirteen.svg -------------------------------------------------------------------------------- /examples/nextjs/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/public/vercel.svg -------------------------------------------------------------------------------- /examples/nextjs/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/styles/Home.module.css -------------------------------------------------------------------------------- /examples/nextjs/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/examples/nextjs/styles/globals.css -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/package.json -------------------------------------------------------------------------------- /packages/documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/.gitignore -------------------------------------------------------------------------------- /packages/documentation/docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/.vuepress/config.js -------------------------------------------------------------------------------- /packages/documentation/docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /packages/documentation/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/README.md -------------------------------------------------------------------------------- /packages/documentation/docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/examples.md -------------------------------------------------------------------------------- /packages/documentation/docs/guides/lighthouse/api-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/lighthouse/api-intro.md -------------------------------------------------------------------------------- /packages/documentation/docs/guides/lighthouse/command-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/lighthouse/command-api.md -------------------------------------------------------------------------------- /packages/documentation/docs/guides/lighthouse/global-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/lighthouse/global-api.md -------------------------------------------------------------------------------- /packages/documentation/docs/guides/lighthouse/good-to-know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/lighthouse/good-to-know.md -------------------------------------------------------------------------------- /packages/documentation/docs/guides/lighthouse/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/lighthouse/installation.md -------------------------------------------------------------------------------- /packages/documentation/docs/guides/lighthouse/lh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/lighthouse/lh.png -------------------------------------------------------------------------------- /packages/documentation/docs/guides/lighthouse/reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/lighthouse/reports.md -------------------------------------------------------------------------------- /packages/documentation/docs/guides/pa11y/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/pa11y/api.md -------------------------------------------------------------------------------- /packages/documentation/docs/guides/pa11y/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/pa11y/installation.md -------------------------------------------------------------------------------- /packages/documentation/docs/guides/pa11y/pally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/guides/pa11y/pally.png -------------------------------------------------------------------------------- /packages/documentation/docs/start-with-why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/docs/start-with-why.md -------------------------------------------------------------------------------- /packages/documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/documentation/package.json -------------------------------------------------------------------------------- /packages/lighthouse/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/commands.js -------------------------------------------------------------------------------- /packages/lighthouse/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/index.d.ts -------------------------------------------------------------------------------- /packages/lighthouse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/index.js -------------------------------------------------------------------------------- /packages/lighthouse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/package.json -------------------------------------------------------------------------------- /packages/lighthouse/src/__tests__/command-handler.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/src/__tests__/command-handler.spec.js -------------------------------------------------------------------------------- /packages/lighthouse/src/__tests__/helpers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/src/__tests__/helpers.spec.js -------------------------------------------------------------------------------- /packages/lighthouse/src/command-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/src/command-handler.js -------------------------------------------------------------------------------- /packages/lighthouse/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/src/helpers.js -------------------------------------------------------------------------------- /packages/lighthouse/src/prepare-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/src/prepare-audit.js -------------------------------------------------------------------------------- /packages/lighthouse/src/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/lighthouse/src/task.js -------------------------------------------------------------------------------- /packages/pa11y/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/pa11y/commands.js -------------------------------------------------------------------------------- /packages/pa11y/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/pa11y/index.d.ts -------------------------------------------------------------------------------- /packages/pa11y/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/pa11y/index.js -------------------------------------------------------------------------------- /packages/pa11y/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/pa11y/package.json -------------------------------------------------------------------------------- /packages/pa11y/src/__tests__/command-handler.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/pa11y/src/__tests__/command-handler.spec.js -------------------------------------------------------------------------------- /packages/pa11y/src/command-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/pa11y/src/command-handler.js -------------------------------------------------------------------------------- /packages/pa11y/src/prepare-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/pa11y/src/prepare-audit.js -------------------------------------------------------------------------------- /packages/pa11y/src/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/packages/pa11y/src/task.js -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfrachet/cypress-audit/HEAD/pnpm-workspace.yaml --------------------------------------------------------------------------------