85c0e50c21
Test client integration (client loads) Test auth integration (client logs in) Test backend integration (accept request) - broken Test autoupdate integration (sends au to client) Add manual cypress tests Add dockered cypress tests Add Readme Add test execution to makefile Add test execution to github-actions TODO: - Create user for tests - flush db after every test
10 lines
179 B
Docker
10 lines
179 B
Docker
FROM cypress/included:8.4.0
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./cypress ./cypress/
|
|
COPY ./cypress-docker.json ./cypress.json
|
|
|
|
COPY entrypoint.sh /usr/local/bin/entrypoint
|
|
ENTRYPOINT entrypoint
|