From bcc6a448502f7cae37e9fc230a18bea385f1d21d Mon Sep 17 00:00:00 2001 From: Davis Sawali Date: Tue, 5 Dec 2023 11:12:47 -0800 Subject: [PATCH] trigger PR --- .../contract-michelson-origination.spec.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/integration-tests/contract-michelson-origination.spec.ts b/integration-tests/contract-michelson-origination.spec.ts index 4c505470f1..84ab4ca145 100644 --- a/integration-tests/contract-michelson-origination.spec.ts +++ b/integration-tests/contract-michelson-origination.spec.ts @@ -8,7 +8,7 @@ CONFIGS().forEach(({ lib, rpc, setup }) => { describe(`Test contract origination to configure parserProvider to parse plain Michelson`, () => { beforeEach(async () => { - await setup() + await setup(); }) it('uses noopParser to originate Michelson code and fails', async () => { // Configure the Tezostoolkit to use the NoopParser (the Michelson won't be parsed) @@ -36,7 +36,7 @@ CONFIGS().forEach(({ lib, rpc, setup }) => { code: idMichelsonCode, init: idInitData }); - await op.confirmation() + await op.confirmation(); expect(op.status).toEqual('applied') }); @@ -47,7 +47,7 @@ CONFIGS().forEach(({ lib, rpc, setup }) => { code: idMichelsonCode, init: idInitData }); - await op.confirmation() + await op.confirmation(); expect(op.status).toEqual('applied') }); }); @@ -63,7 +63,7 @@ CONFIGS().forEach(({ lib, rpc, setup }) => { code: idMichelsonCode, init: idInitData }) - await op.confirmation() + await op.confirmation(); expect(op.hash).toBeDefined(); expect(op.includedInBlock).toBeLessThan(Number.POSITIVE_INFINITY) }); @@ -73,7 +73,7 @@ CONFIGS().forEach(({ lib, rpc, setup }) => { code: idMichelsonCode, init: idInitData }) - await op.confirmation() + await op.confirmation(); expect(op.hash).toBeDefined(); expect(op.includedInBlock).toBeLessThan(Number.POSITIVE_INFINITY) });