@cardano-sdk/e2e 0.36.5 → 0.36.7
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 +8 -0
- package/README.md +3 -30
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/package.json +20 -22
- package/test/k6/scenarios/{wallet-restoration.test.js → wallets.test.js} +44 -49
- package/test/k6/scenarios/wallet-creation.test.js +0 -219
- /package/test/dump/addresses/{no-history-any-testnet.json → no-history-preprod.json} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.36.7](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.36.6...@cardano-sdk/e2e@0.36.7) (2024-07-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @cardano-sdk/e2e
|
|
9
|
+
|
|
10
|
+
## [0.36.6](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.36.5...@cardano-sdk/e2e@0.36.6) (2024-07-10)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @cardano-sdk/e2e
|
|
13
|
+
|
|
6
14
|
## [0.36.5](https://github.com/input-output-hk/cardano-js-sdk/compare/@cardano-sdk/e2e@0.36.4...@cardano-sdk/e2e@0.36.5) (2024-06-26)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @cardano-sdk/e2e
|
package/README.md
CHANGED
|
@@ -99,37 +99,10 @@ Address: addr_test1qr0c3frkem9cqn5f73dnvqpena27k2fgqew6wct9eaka03agfwkvzr0zyq
|
|
|
99
99
|
|
|
100
100
|
You can configure any of these five wallets in your test and use any amount of tADA you need.
|
|
101
101
|
|
|
102
|
-
|
|
102
|
+
## Local Test Network - Hot reload
|
|
103
103
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
It can be started with:
|
|
108
|
-
|
|
109
|
-
```bash
|
|
110
|
-
$ yarn workspace @cardano-sdk/e2e local-network:dev
|
|
111
|
-
```
|
|
112
|
-
|
|
113
|
-
and a good idea is to run following command before starting it.
|
|
114
|
-
|
|
115
|
-
```bash
|
|
116
|
-
$ yarn cleanup && yarn && yarn build
|
|
117
|
-
```
|
|
118
|
-
|
|
119
|
-
Restart the provider-server:
|
|
120
|
-
|
|
121
|
-
```bash
|
|
122
|
-
$ docker exec -it local-network-e2e-provider-server-1 kill 1
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
So, if while working on the `core` and `cardano-services` packages simultaneously, we need to restart the provider-server
|
|
126
|
-
to check the effect of our ongoing changes, it is enough to issue the following command:
|
|
127
|
-
|
|
128
|
-
```bash
|
|
129
|
-
$ yarn workspace @cardano-sdk/core build && yarn workspace @cardano-sdk/cardano-services build && docker exec -it local-network-e2e-provider-server-1 kill 1
|
|
130
|
-
```
|
|
131
|
-
|
|
132
|
-
if it exits with error we need to fix our ongoing changes, if it exits silently, the provider-server is now running with our changes.
|
|
104
|
+
The **local-network** runs with hot reload: once running, just saving a source file makes all the containers depending on that file
|
|
105
|
+
are stopped and restarted loading the new version of the source files. No additional operations are required.
|
|
133
106
|
|
|
134
107
|
## Local file server
|
|
135
108
|
|