diff --git a/.travis.yml b/.travis.yml index e7a3e71b53..1d1629d303 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,9 @@ language: node_js -node_js: 10 +node_js: 12 env: - NODE_ENV=ci - - NODE_ENV=ci-betanet - # - NODE_ENV=betanet cache: yarn diff --git a/test/config.js b/test/config.js index dedb18f896..4af00c1c65 100644 --- a/test/config.js +++ b/test/config.js @@ -38,12 +38,6 @@ module.exports = function getConfig(env) { nodeUrl: 'https://rpc.ci-testnet.near.org', masterAccount: 'test.near', }; - case 'ci-betanet': - return { - networkId: 'shared-test-staging', - nodeUrl: 'https://rpc.ci-betanet.near.org', - masterAccount: 'test.near', - }; default: throw Error(`Unconfigured environment '${env}'. Can be configured in src/config.js.`); }