diff --git a/.gitignore b/.gitignore index a8f21b090..69f067ac3 100644 --- a/.gitignore +++ b/.gitignore @@ -14,5 +14,3 @@ tsconfig.tsbuildinfo !test/eslintrc.js coverage - -test/tmp diff --git a/package.json b/package.json index d014998bf..1a81eee0a 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,6 @@ "test": "npm run jest", "test:deploy": "test/deploy/validate-package.sh", "test:integration": "jest --coverageThreshold '{}' test/integration", - "test:system": "test/system/run-solid-test-suite.sh", "test:unit": "jest test/unit", "validate": "componentsjs-compile-config urn:solid-server:default -c config/config-default.json -f > /dev/null", "version": "manual-git-changelog onversion", diff --git a/test/system/run-solid-test-suite.sh b/test/system/run-solid-test-suite.sh deleted file mode 100755 index 681e71582..000000000 --- a/test/system/run-solid-test-suite.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env bash - -# Start server -npm start & -PID=$! - -# Initialize tests -pushd test/tmp -git clone https://github.com/solid/solid-crud-tests -cd solid-crud-tests -git checkout v0.3.0 -npm ci - -# Run tests -export SERVER_ROOT=http://localhost:3000 -export ALICE_WEBID_DOC=$SERVER_ROOT/profile.ttl -export ALICE_WEBID=$ALICE_WEBID#me -curl -X PUT $ALICE_WEBID_DOC -d '<#me> .' -npm run jest -RESULT=$? - -# Clean up -kill $PID -popd -exit $RESULT diff --git a/test/tmp/.gitkeep b/test/tmp/.gitkeep deleted file mode 100644 index e69de29bb..000000000