Skip to content

Commit

Permalink
Fix blank project to rely on test env for deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrichina committed Apr 18, 2019
1 parent a6ec7b1 commit e6c0716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blank_project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"deploy": "npm run build && npm run deploy:contract && npm run deploy:pages",
"prestart": "npm run build && npm run deploy:contract",
"start": "python3 -mhttp.server --directory src",
"test": "npm run build && npm run deploy:contract:local && jest test --env=near-shell/local_test_environment",
"test-on-devnet": "npm run build && npm run deploy:contract && jest test --env=near-shell/devnet_test_environment"
"test": "npm run build && jest test --env=near-shell/local_test_environment",
"test-on-devnet": "npm run build && jest test --env=near-shell/devnet_test_environment"
},
"devDependencies": {
"assemblyscript": "github:nearprotocol/assemblyscript.git",
Expand Down

1 comment on commit e6c0716

@janedegtiareva
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Please sign in to comment.