Skip to content

Commit

Permalink
Fix eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
louptheron committed Jan 24, 2024
1 parent 68bcca9 commit e92e429
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ docker-compose-up:
@until curl --output /dev/null --silent --fail "http://localhost:8880/bff/v1/healthcheck"; do printf '.' && sleep 1; done

docker-compose-puppeteer-up:
docker compose -f ./frontend/cypress/docker-compose.yml up -d --quiet-pull db
docker compose -f ./frontend/cypress/docker-compose.yml up --quiet-pull flyway
docker compose -f ./frontend/cypress/docker-compose.yml up -d --quiet-pull app
docker compose -f ./frontend/puppeteer/docker-compose.yml up -d
@printf 'Waiting for backend app to be ready'
@until curl --output /dev/null --silent --fail "http://localhost:8880/bff/v1/healthcheck"; do printf '.' && sleep 1; done
Expand Down
2 changes: 1 addition & 1 deletion frontend/puppeteer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
depends_on:
flyway:
condition: service_completed_successfully
geoserver-monitorenv-stubs:
geoserver-stubs:
condition: service_healthy
restart: always
logging:
Expand Down
2 changes: 1 addition & 1 deletion frontend/puppeteer/e2e/missions.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { beforeEach, expect, it } from '@jest/globals'
import { beforeEach, expect, it, jest } from '@jest/globals'
import { platform } from 'os'

import { assertContains, getFirstTab, getInputContent, listenToConsole, wait } from './utils'
Expand Down
2 changes: 1 addition & 1 deletion frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@
"src/vite-env-override.d.ts",
"src/ui/styled.d.ts"
],
"exclude": ["node_modules/*", "./config/cypress.config.ts"]
"exclude": ["node_modules/*"]
}

0 comments on commit e92e429

Please sign in to comment.