forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: build fixtures as part of test (solana-labs#495)
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ | |
"bpf-sdk:install": "bin/bpf-sdk-install.sh", | ||
"bpf-sdk:remove-symlinks": "find bpf-sdk -type l -print -exec cp {} {}.tmp \\; -exec mv {}.tmp {} \\;", | ||
"build": "cross-env NODE_ENV=production rollup -c", | ||
"build:fixtures": "./test/fixtures/noop-c/build.sh; ./test/fixtures/noop-rust/build.sh", | ||
"clean": "rimraf ./coverage ./lib", | ||
"codecov": "set -ex; npm run test:cover; cat ./coverage/lcov.info | codecov", | ||
"dev": "cross-env NODE_ENV=development rollup -c", | ||
|
@@ -59,10 +60,10 @@ | |
"prepare": "run-s clean bpf-sdk:install bpf-sdk:remove-symlinks build", | ||
"pretty": "prettier --write '{,{examples,src,test}/**/}*.js'", | ||
"re": "semantic-release --repository-url [email protected]:solana-labs/solana-web3.js.git", | ||
"test": "cross-env NODE_ENV=test jest --useStderr", | ||
"test:cover": "cross-env NODE_ENV=test jest --coverage --useStderr", | ||
"test:live": "cross-env NODE_ENV=test TEST_LIVE=1 jest --useStderr", | ||
"test:watch": "cross-env NODE_ENV=test jest --watch --useStderr" | ||
"test": "npm run build:fixtures; cross-env NODE_ENV=test jest --useStderr", | ||
"test:cover": "npm run build:fixtures; cross-env NODE_ENV=test jest --coverage --useStderr", | ||
"test:live": "npm run build:fixtures; cross-env NODE_ENV=test TEST_LIVE=1 jest --useStderr", | ||
"test:watch": "npm run build:fixtures; cross-env NODE_ENV=test jest --watch --useStderr" | ||
}, | ||
"dependencies": { | ||
"@babel/runtime": "^7.3.1", | ||
|
Binary file not shown.
Binary file not shown.