Do not use DataView (#28)

This commit is contained in:
folex
2021-03-03 17:27:00 +03:00
committed by GitHub
parent c65c0afbee
commit 052a8a7f24
3 changed files with 5 additions and 32 deletions

View File

@ -1,4 +1,5 @@
import { createLocalClient } from '../connection';
import {subscribeForErrors} from "../../api";
describe('== AIR suite', () => {
it('check init_peer_id', async function () {
@ -59,7 +60,7 @@ describe('== AIR suite', () => {
it('call script without ttl', async function () {
// arrange
const client = await createLocalClient();
const script = `(call %init_peer_id% ("" "") [""])`;
const script = `(call %init_peer_id% ("op" "identity") [""])`;
// act
const promise = client.sendScript(script, undefined, 1);