Skip to content

Commit

Permalink
use native name
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhao99 committed Feb 6, 2025
1 parent 1c39e28 commit 1a40b44
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test_coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ jobs:
with:
working-directory: ./query-connector
test-script: npm run test:ci
coverage-file: coverageReport.json
2 changes: 1 addition & 1 deletion query-connector/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ certificates
/blob-report/
/playwright/.cache/
/coverage
coverageReport.json
report.json
2 changes: 1 addition & 1 deletion query-connector/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ docker compose -f docker-compose-integration.yaml logs -f flyway | grep -q "Succ
BASE_CMD="DATABASE_URL=postgresql://postgres:pw@localhost:5432/tefca_db TEST_TYPE=integration jest "
# running our integration tests
if [ "$GENERATE_COVERAGE_REPORT" = "true" ]; then
JEST_CMD="$BASE_CMD --testPathIgnorePatterns='/e2e/' --ci --json --coverage --testLocationInResults --outputFile=coverageReport.json"
JEST_CMD="$BASE_CMD --testPathIgnorePatterns='/e2e/' --ci --json --coverage --testLocationInResults --outputFile=report.json"
else
JEST_CMD="$BASE_CMD --testPathPattern=tests/integration"
fi
Expand Down

0 comments on commit 1a40b44

Please sign in to comment.