Skip to content

Commit

Permalink
Move e2e tests to root directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandenburgh committed Nov 7, 2023
1 parent 86c681c commit 3759711
Show file tree
Hide file tree
Showing 18 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,23 +115,23 @@ jobs:

- name: Install E2E tests
run: yarn install --frozen-lockfile
working-directory: web/test
working-directory: e2e

- name: Lint E2E tests
run: yarn run lint --no-fix --max-warnings=0
working-directory: web/test
working-directory: e2e

- name: Run E2E tests
run: |
# start vue dev server and wait for it to start
yarn --cwd .. run dev 2> /dev/null &
yarn --cwd ../web/ run dev 2> /dev/null &
while ! nc -z localhost 8085; do
sleep 3
done
# start the dandi-api server
python ../../manage.py runserver &
python ../manage.py runserver &
# run the E2E tests
yarn run test
working-directory: web/test
working-directory: e2e
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3759711

Please sign in to comment.