Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
Make integration test note a little bit more polite
Browse files Browse the repository at this point in the history
  • Loading branch information
vsund committed Jun 23, 2018
1 parent c342d41 commit e8b3a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"prepublishOnly": "yarn run build",
"clean": "rm -rf ./dist/ ./src/{auth,profile}/schema/**/*.d.ts",
"test": "yarn run build && mocha --require ts-node/register 'tests/unitTests/**/*.spec.ts'",
"integration-test": "echo '\nWelcome to the integration tests!\n=================================\n\nThe integration tests are doing live requests to assure that the current code\nworks with the deployed environment. So you are expected to bring an internet\nconnection and some time.\nAlso note that they may fail due to issues with your specific environment\nthat might not affect the real ecosystem.\n' && yarn run build && mocha --require ts-node/register 'tests/integrationTests/**/*.spec.ts'",
"integration-test": "echo '\nWelcome to the integration tests!\n=================================\n\nThe integration tests are doing live requests to assure that the current code\nworks with the deployed environment. So you are expected to bring an internet\nconnection and some time.\nAlso please note that they may fail due to issues with your specific environment\nthat might not affect the real ecosystem.\n' && yarn run build && mocha --require ts-node/register 'tests/integrationTests/**/*.spec.ts'",
"document": "typedoc --out ./docs/code/ ./src/ --sourcefile-url-prefix https://github.com/ntzwrk/blockstack.ts/blob/master/src/",
"generate-json-interfaces": "cd ./src/auth/schema/ && find ./ -name \"*.json\" -exec json2ts --style.useTabs --style.singleQuote --input {} --output {}.d.ts \\; && cd - && cd ./src/profile/schema/ && find ./ -name \"*.json\" -exec json2ts --style.useTabs --style.singleQuote --input {} --output {}.d.ts \\; && cd -"
},
Expand Down

0 comments on commit e8b3a13

Please sign in to comment.