Skip to content

Commit

Permalink
trigger PR
Browse files Browse the repository at this point in the history
  • Loading branch information
dsawali committed Dec 5, 2023
1 parent 8a0742e commit bcc6a44
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions integration-tests/contract-michelson-origination.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -36,7 +36,7 @@ CONFIGS().forEach(({ lib, rpc, setup }) => {
code: idMichelsonCode,
init: idInitData
});
await op.confirmation()
await op.confirmation();
expect(op.status).toEqual('applied')
});

Expand All @@ -47,7 +47,7 @@ CONFIGS().forEach(({ lib, rpc, setup }) => {
code: idMichelsonCode,
init: idInitData
});
await op.confirmation()
await op.confirmation();
expect(op.status).toEqual('applied')
});
});
Expand All @@ -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)
});
Expand All @@ -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)
});
Expand Down

0 comments on commit bcc6a44

Please sign in to comment.