Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jahow committed Aug 13, 2024
1 parent 428827a commit 307ef99
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@ jobs:
- run: npm ci

- name: Run e2e tests
run: npx nx affected --target=e2e
# run: npx nx affected --target=e2e
run: npx nx e2e datahub-e2e

- uses: actions/upload-artifact@v4
if: always()
Expand Down
2 changes: 1 addition & 1 deletion apps/datahub-e2e/src/e2e/datasets.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ describe('datasets', () => {
})
})

describe('inspire keyword filter', () => {
describe.only('inspire keyword filter', () => {
beforeEach(() => {
cy.get('@filters').eq(6).click()
getFilterOptions()
Expand Down
4 changes: 2 additions & 2 deletions support-services/docker-entrypoint.d/04-upload-thesauri.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ xsrf_token=$(cat /xsrf_token)
echo "Uploading thesauri to GeoNetwork..."

# we're waiting a bit here for GN to be ready to accept thesauri (i.e. the default ones are set up)
sleep 5
sleep 4

for f in /docker-entrypoint.d/thesauri/*.rdf
do
Expand All @@ -22,7 +22,7 @@ do
done

# this shows the registered thesauri in GN
curl -s "http://$host/geonetwork/srv/fre/thesaurus?_content_type=json" \
curl -s --no-progress-meter "http://$host/geonetwork/srv/fre/thesaurus?_content_type=json" \
-H 'Accept: application/json, text/plain, */*' \
-H 'Content-Type: multipart/form-data' \
-H 'Accept: application/json, text/plain, */*' \
Expand Down

0 comments on commit 307ef99

Please sign in to comment.