From 31fd212c53b194407fa758004bc3bb3d34e1ae5f Mon Sep 17 00:00:00 2001 From: Oleh Bairak Date: Mon, 5 Feb 2024 17:42:24 +0100 Subject: [PATCH] fix: add playbook --- packages/integration-tests/tests/api/accounts.test.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/integration-tests/tests/api/accounts.test.ts b/packages/integration-tests/tests/api/accounts.test.ts index a8bd799015..e29cad8b84 100644 --- a/packages/integration-tests/tests/api/accounts.test.ts +++ b/packages/integration-tests/tests/api/accounts.test.ts @@ -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 () => {