2019-12-11 18:26:20 +01:00
|
|
|
## Generating fixture data
|
|
|
|
|
2020-01-17 23:59:25 +01:00
|
|
|
Fixture data can be generated by following these steps:
|
2019-12-11 18:26:20 +01:00
|
|
|
|
2020-01-17 23:59:25 +01:00
|
|
|
1. Load the unpacked extension in development or test mode
|
|
|
|
2. Inspecting the background context of the extension
|
2022-11-09 20:28:32 +01:00
|
|
|
3. Call `stateHooks.metamaskGetState`, then call [`copy`][1] on the results
|
2019-12-11 18:26:20 +01:00
|
|
|
|
2020-01-17 23:59:25 +01:00
|
|
|
You can then paste the contents directly in your fixture file.
|
2019-12-11 18:26:20 +01:00
|
|
|
|
2020-01-17 23:59:25 +01:00
|
|
|
```js
|
2022-11-09 20:28:32 +01:00
|
|
|
copy(await stateHooks.metamaskGetState())
|
2019-12-11 18:26:20 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
[1]:https://developers.google.com/web/tools/chrome-devtools/console/utilities
|