Skip to content

Commit

Permalink
move subscriptions.spec to subscriptions.default.spec
Browse files Browse the repository at this point in the history
  • Loading branch information
dalehille committed May 28, 2020
1 parent f27a95e commit dce9437
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"start:debug": "node --inspect-brk app/index.js",
"test": "nyc --all --exclude=**/*.tests.js --exclude=**/*.spec.js --exclude=app/apollo/**/*.js --exclude=coverage/* --reporter=html --reporter=text mocha -r dotenv/config **/*.tests.js",
"test:apollo": "export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --timeout 5000 --exit 'app/apollo/test/*.spec.js'",
"test:apollo:default": "export AUTH_MODEL=default; export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --timeout 5000 'app/apollo/test/*.spec.js'",
"test:apollo:local": "export AUTH_MODEL=local; export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --timeout 5000 'app/apollo/test/*.spec.js'",
"test:apollo:passport.local": "export AUTH_MODEL=passport.local; export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --timeout 5000 'app/apollo/test/*.spec.js'",
"test:apollo:default": "export AUTH_MODEL=default; export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --timeout 5000 'app/apollo/test/*.default.spec.js'",
"test:apollo:local": "export AUTH_MODEL=local; export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --exclude 'app/apollo/test/*.default.spec.js' --timeout 5000 'app/apollo/test/*.spec.js'",
"test:apollo:passport.local": "export AUTH_MODEL=passport.local; export NODE_ENV=test; nyc --exclude=**/*.spec.js --reporter=html --reporter=text mocha --exclude 'app/apollo/test/*.default.spec.js' --timeout 5000 'app/apollo/test/*.spec.js'",
"wait-mongo": "node app/wait-mongo.js",
"lint": "npx npm-run-all eslint yamllint dockerlint markdownlint",
"eslint": "npx eslint app/",
Expand Down

0 comments on commit dce9437

Please sign in to comment.