Skip to content

Commit

Permalink
fix: add playbook
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak committed Feb 5, 2024
1 parent 5fce2ab commit 31fd212
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/integration-tests/tests/api/accounts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,23 @@ import { environment } from "../../src/config";
import { localConfig } from "../../src/config";
import { Buffer, Token, Wallets } from "../../src/entities";
import { Helper } from "../../src/helper";
import { Playbook } from "../../src/playbook/playbook";

describe("API module: Account", () => {
jest.setTimeout(localConfig.standardTimeout);

const helper = new Helper();
const playbook = new Playbook();
const bufferFile = "src/playbook/";
let apiRoute: string;
let response;
let txHash: string;

describe("/api?module=account", () => {
beforeAll(async () => {
await playbook.deployNFTtoL2();
});

//@id1704
it("Verify /api?module=account&action=balancemulti response", async () => {
await helper.retryTestAction(async () => {
Expand Down

0 comments on commit 31fd212

Please sign in to comment.