From 5fccbc5ac805db91b84200b9d97a3e7562571a15 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 26 Aug 2020 22:40:51 -0700 Subject: [PATCH] Disable token/js tests pending resolution of #332 --- ci/script.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/ci/script.sh b/ci/script.sh index 8785f5facfa6bd..0b0c29ad692021 100755 --- a/ci/script.sh +++ b/ci/script.sh @@ -69,12 +69,13 @@ js_token() { time npm run flow || exit $? tsc module.d.ts || exit $? - npm run cluster:localnet || exit $? - npm run localnet:down - npm run localnet:update || exit $? - npm run localnet:up || exit $? - time npm run start || exit $? - npm run localnet:down + # TODO: Uncomment when resolving https://github.com/solana-labs/solana-program-library/issues/332 + # npm run cluster:localnet || exit $? + # npm run localnet:down + # npm run localnet:update || exit $? + # npm run localnet:up || exit $? + # time npm run start || exit $? + # npm run localnet:down } _ js_token