fix for YOU CAN'T CLEAN THE DATABASE WITH DEBUG=false

This commit is contained in:
Ulf Gebhardt 2019-06-04 00:10:42 +02:00
parent 97ff6fdb78
commit dd624ef535
No known key found for this signature in database
GPG Key ID: 44C888923CC8E7F3

View File

@ -19,7 +19,7 @@
"test:cucumber": " cross-env CLIENT_URI=http://localhost:4123 run-p --race test:before:* 'test:cucumber:cmd {@}' --",
"test:jest:debug": "run-p --race test:before:* 'test:jest:cmd:debug {@}' --",
"db:script:seed": "wait-on tcp:4001 && babel-node src/seed/seed-db.js",
"db:reset": "babel-node src/seed/reset-db.js",
"db:reset": "cross-env DEBUG=true babel-node src/seed/reset-db.js",
"db:seed": "cross-env GRAPHQL_URI=http://localhost:4001 GRAPHQL_PORT=4001 DEBUG=true DISABLED_MIDDLEWARES=permissions run-p --race dev db:script:seed"
},
"author": "Human Connection gGmbH",