Skip to content

Commit

Permalink
Remove unnecessary use of npx
Browse files Browse the repository at this point in the history
  • Loading branch information
frangio committed Nov 16, 2020
1 parent df639a8 commit 6cb72b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/migrating-from-truffle.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Don't forget to make Mocha the entry point of your test suite once you install i
// package.json
"scripts": {
- "test": "npx truffle test"
+ "test": "npx mocha --exit --recursive"
- "test": "truffle test"
+ "test": "mocha --exit --recursive"
}
----

Expand Down

0 comments on commit 6cb72b9

Please sign in to comment.