Skip to content

Commit

Permalink
s/hello.wasm/main.wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrichina committed Oct 1, 2019
1 parent e172d8d commit 0f13710
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/account.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const BN = require('bn.js');
let nearjs;
let workingAccount;

const HELLO_WASM_PATH = process.env.HELLO_WASM_PATH || 'node_modules/near-hello/dist/hello.wasm';
const HELLO_WASM_PATH = process.env.HELLO_WASM_PATH || 'node_modules/near-hello/dist/main.wasm';

jasmine.DEFAULT_TIMEOUT_INTERVAL = 50000;

Expand Down
2 changes: 1 addition & 1 deletion test/test-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const networkId = 'unittest';
const testAccountName = 'test.near';

const INITIAL_BALANCE = new BN(100000000000);
const HELLO_WASM_PATH = process.env.HELLO_WASM_PATH || 'node_modules/near-hello/dist/hello.wasm';
const HELLO_WASM_PATH = process.env.HELLO_WASM_PATH || 'node_modules/near-hello/dist/main.wasm';

async function setUpTestConnection() {
const keyStore = new nearlib.keyStores.InMemoryKeyStore();
Expand Down

0 comments on commit 0f13710

Please sign in to comment.