@cardano-sdk/e2e 0.16.7 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/package.json +10 -9
- package/test/k6/README.md +21 -0
- package/test/k6/scenarios/idle-clients.js +221 -0
- package/test/k6/scenarios/wallet-creation.test.js +1 -0
- package/test/k6/scenarios/wallet-restoration.test.js +1 -0
- package/test/wallet/PersonalWallet/handle.test.ts +10 -9
- package/test/web-extension/extension/background/services.ts +27 -3
- package/test/web-extension/extension/ui.html +4 -0
- package/test/web-extension/extension/ui.ts +32 -1
- package/test/web-extension/extension/util.ts +11 -0
- package/test/web-extension/specs/wallet.spec.ts +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.17.0](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.16.7...@cardano-sdk/e2e@0.17.0) (2023-07-26)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* **web-extension:** lw-7563 throw RemoteApiShutdownError on disconnect during method call
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **web-extension:** lw-7563 throw RemoteApiShutdownError on disconnect during method call ([dd803c6](https://github.com/input-output-hk/cardano-js-sdk/commit/dd803c6f15a5c4e42eb05413388fef71bb7ad628))
|
|
15
|
+
|
|
6
16
|
## [0.16.7](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.16.6...@cardano-sdk/e2e@0.16.7) (2023-07-17)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @cardano-sdk/e2e
|