Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.67 KB

Plugins.md

File metadata and controls

27 lines (19 loc) · 1.67 KB

Some Cypress plugins we use

Docker

Plugins can be added to the docker image but require yarn and --cwd parameter. Here is an example Dockerfile:

FROM drydockcloud/ci-cypress:6.7.0
# Install Cypress plugins
RUN yarn add --cwd ../ axe-core cypress-axe
RUN yarn add --cwd ../ @testing-library/cypress

See also Docker.

Note: In the 9.7.0 release we added the plugins to the drydockcloud/ci-cypress image so that can be used directly.

Useful references