Skip to content

Commit

Permalink
updated lerna, sass, and firebase version (#2749)
Browse files Browse the repository at this point in the history
* updated lerna, sass, and firebase version

* trigger PR
  • Loading branch information
dsawali authored Dec 5, 2023
1 parent e161bc7 commit 4d55de5
Show file tree
Hide file tree
Showing 6 changed files with 676 additions and 196 deletions.
4 changes: 2 additions & 2 deletions apps/taquito-test-dapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"@tsconfig/svelte": "^5.0.2",
"events": "^3.3.0",
"lerna": "^7.3.1",
"lerna": "^7.4.2",
"prettier-plugin-svelte": "^3.0.3",
"sass": "^1.69.3",
"sass": "^1.69.4",
"svelte": "^4.2.1",
"svelte-check": "^3.5.2",
"svelte-preprocess": "^5.0.4",
Expand Down
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
Loading

0 comments on commit 4d55de5

Please sign in to comment.