diff --git a/.env-gwc b/.env-gwc index 758e1fe..99f9bd8 100644 --- a/.env-gwc +++ b/.env-gwc @@ -15,3 +15,5 @@ USE_DELEGATED_ROUTING=true # Uncomment the below to see request & response headers in the logs # ECHO_HEADERS=true GWC_DOCKER_IMAGE=ghcr.io/ipfs/gateway-conformance:v0.5.0 +#GWC_SPECS="subdomain-ipns-gateway,subdomain-ipfs-gateway" +GWC_SPECS="subdomain-ipfs-gateway" diff --git a/package.json b/package.json index fec0055..0db8c4f 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "test:gwc-kubo": "node ./scripts/kubo-init.js", "test:gwc-helia": "npm run build && node -r dotenv/config --trace-warnings dist/src/index.js dotenv_config_path=./.env-gwc", "test:gwc-setup": "concurrently -k -s all -n \"kubo,helia\" -c \"magenta,blue\" \"npm run test:gwc-kubo\" \"wait-on 'tcp:8080' && npm run test:gwc-helia\"", - "test:gwc-execute": "docker run --network host -v $PWD:/workspace -w /workspace $GWC_DOCKER_IMAGE test --gateway-url='http://localhost:8090' --subdomain-url='http://localhost:8090' --verbose --json gwc-report.json --specs subdomain-ipns-gateway,subdomain-ipfs-gateway -- -timeout 30m", + "test:gwc-execute": "docker run --network host -v $PWD:/workspace -w /workspace $GWC_DOCKER_IMAGE test --gateway-url='http://localhost:8090' --subdomain-url='http://localhost:8090' --verbose --json gwc-report.json --specs ${GWC_SPECS} -- -timeout 30m", "test:gwc": "concurrently -k -s all -n \"kubo&helia,gateway-conformance\" -c \"magenta,blue\" \"npm run test:gwc-setup\" \"wait-on 'tcp:8090' && npm run test:gwc-execute\"", "healthcheck": "node dist/src/healthcheck.js", "debug:until-death": "./debugging/until-death.sh",