All checks were successful
E2E Tests with Cypress / cypress (push) Successful in 3m12s
12 lines
202 B
Text
12 lines
202 B
Text
FROM cypress/browsers:latest
|
|
|
|
WORKDIR /e2e
|
|
|
|
COPY tsconfig.json .
|
|
COPY cypress.config.ts .
|
|
COPY cypress ./cypress
|
|
|
|
RUN yarn init -y && \
|
|
yarn add -D cypress typescript
|
|
|
|
CMD ["npx", "cypress", "run"]
|