Skip to content

ymc182/workspace-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NEAR Workspaces (TypeScript/JavaScript Edition)

Project license Project license Discord NPM version Size on NPM

NEAR Workspaces is a library for automating workflows and writing tests for NEAR smart contracts. You can use it as is or integrate with test runner of your choise (AVA, Jest, Mocha, etc.). If you don't have a preference, we suggest you to use AVA.

Quick Start (without testing frameworks)

To get started with Near Workspaces you need to do only two things:

  1. Initialize a Worker.

    const worker = await Worker.init();
    const root = worker.rootAccount;
    
    const alice = await root.createSubAccount('alice');
    const contract = await root.createAndDeploy(
      root.getSubAccount('contract-name').accountId,
      'path/to/compiled.wasm'
    );
  2. Writing tests.

    near-workspaces is designed for concurrency. Here's a simple way to get concurrent runs using plain JS:

    import {strict as assert} from 'assert';
    
    await Promise.all([
      async () => {
        await alice.call(
          contract,
          'some_update_function',
          {some_string_argument: 'cool', some_number_argument: 42}
        );
        const result = await contract.view(
          'some_view_function',
          {account_id: alice}
        );
        assert.equal(result, 'whatever');
      },
      async () => {
        const result = await contract.view(
          'some_view_function',
          {account_id: alice}
        );
        /* Note that we expect the value returned from `some_view_function` to be
        a default here, because this `fork` runs *at the same time* as the
        previous, in a separate local blockchain */
        assert.equal(result, 'some default');
      }
    ]);
    
    

More info in our main README: https://github.com/near/workspaces-js

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors