diff --git a/integration-tests/contract-deploy-having-ticket.spec.ts b/integration-tests/contract-deploy-having-ticket.spec.ts index 14cf18d382..23ed42b0c3 100644 --- a/integration-tests/contract-deploy-having-ticket.spec.ts +++ b/integration-tests/contract-deploy-having-ticket.spec.ts @@ -1,6 +1,6 @@ import { CONFIGS } from "./config"; -import { ticketCode, ticketStorage } from './data/code_with_ticket'; -import { ticketCodeProto14, ticketStorageProto14 } from './data/code_with_ticket_proto14'; +import { ticketCode } from './data/code_with_ticket'; +import { ticketCodeProto14 } from './data/code_with_ticket_proto14'; import { Protocols } from "@taquito/taquito"; CONFIGS().forEach(({ lib, rpc, setup, protocol }) => { @@ -12,8 +12,8 @@ CONFIGS().forEach(({ lib, rpc, setup, protocol }) => { beforeEach(async (done) => { await setup(); - done() - }) + done(); + }); kathmandunet('Originates a contract having ticket with init and the contract api', async (done) => { const op = await Tezos.contract.originate({ @@ -62,8 +62,8 @@ CONFIGS().forEach(({ lib, rpc, setup, protocol }) => { beforeEach(async (done) => { await setup(); - done() - }) + done(); + }); limanetAndAlpha('Originates a contract having ticket with init and the contract api', async (done) => { const op = await Tezos.contract.originate({ diff --git a/integration-tests/wallet-deploy-having-ticket.spec.ts b/integration-tests/wallet-deploy-having-ticket.spec.ts index 5c1131367d..356c376f4a 100644 --- a/integration-tests/wallet-deploy-having-ticket.spec.ts +++ b/integration-tests/wallet-deploy-having-ticket.spec.ts @@ -53,6 +53,7 @@ CONFIGS().forEach(({ lib, rpc, setup, protocol }) => { done(); }); }); + describe(`Test contract origination having ticket with init through wallet api using: ${rpc}`, () => { beforeEach(async (done) => {