test: Remove solid-crud-tests.

They are currently not running properly.
This commit is contained in:
Ruben Verborgh 2020-12-06 01:39:51 +01:00
parent d7e189cdd8
commit 3bd82271b4
4 changed files with 0 additions and 28 deletions

2
.gitignore vendored
View File

@ -14,5 +14,3 @@ tsconfig.tsbuildinfo
!test/eslintrc.js
coverage
test/tmp

View File

@ -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",

View File

@ -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> <http://www.w3.org/ns/pim/space#storage> </>.'
npm run jest
RESULT=$?
# Clean up
kill $PID
popd
exit $RESULT

View File