This commit is contained in:
tidusjar 2022-07-29 23:01:54 +01:00
commit 6521cf1f4d
2 changed files with 5 additions and 2 deletions

View file

@ -41,7 +41,10 @@ jobs:
run: docker build -t ombi src/
- name: Run Docker Image
run: docker run --rm -p 5000:5000 ombi
run: nohup docker run --rm -p 5000:5000 ombi &
- name: Sleep for server to start
run: sleep 20
# - name: Start Frontend
# run: |

View file

@ -1,7 +1,7 @@
{
"$schema": "https://on.cypress.io/cypress.schema.json",
"supportFile": "cypress/support/index.ts",
"baseUrl": "http://localhost:3577",
"baseUrl": "http://localhost:5000",
"integrationFolder": "cypress/tests",
"testFiles": "**/*.spec.ts*",
"watchForFileChanges": true,