Skip to content

Commit

Permalink
Don't run Parcel build as part of tests
Browse files Browse the repository at this point in the history
This should be tested on create-near-app CI anyway
and currently was failing CLI because of semver bullshit npm/node-semver#323
  • Loading branch information
vgrichina committed Mar 3, 2021
1 parent 6179907 commit 6de0399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_contract.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ testaccount=testaccount$timestamp.test.near

echo Building contract
yarn install
yarn build
yarn build:contract

echo Deploying contract
../bin/near deploy --accountId=$testaccount --wasmFile=out/main.wasm
Expand Down Expand Up @@ -42,4 +42,4 @@ EXPECTED='BASE64ROCKS'
if [[ ! $TEXT =~ .*$EXPECTED.* ]]; then
echo FAILURE Unexpected output from near call: $RESULT
exit 1
fi
fi

0 comments on commit 6de0399

Please sign in to comment.