UI for Governance of Inter Protocol
Start HMR server:
yarn dev
Open app against a network config, e.g. ollinet
open http://127.0.0.1:5173/?agoricNet=ollinet
Start a wallet client server for network-config:
cd wallet-app
yarn start
Start a dev server with fast refresh:
yarn dev
Launch pointing to your localhost:
open http://127.0.0.1:5173/?agoricNet=local
E2E tests have been written in order to test the dapp as well as to perform automated testing on emerynet/devnet when upgrading the chain
There are two ways to run the tests:
To run tests on your local machine, first you need to start the frontend server:
yarn dev
If you plan to run tests with CYPRESS_AGORIC_NET=local, you must start the a3p chain beforehand. To do this, use the following command:
docker run -d -p 26657:26657 -p 1317:1317 -p 9090:9090 ghcr.io/agoric/agoric-3-proposals:latestAlternatively, you can create an a3p chain from a specific branch in your agoric-sdk repository. To do this, navigate to the a3p-integration directory in your agoric-sdk repository. Install all necessary dependencies and build the project with:
yarn && yarn buildOnce the build is complete, locate the Docker image you just created by running:
docker imagesFind the hash of your new image and start the container using the hash:
docker run -p 26657:26657 -p 1317:1317 -p 9090:9090 {hash}Note: The tests use chrome browser by default so they require it to be installed
Next, run the tests using the following command:
CYPRESS_AGORIC_NET=<network> yarn test:e2ewhere <network> can be: local,emerynet,devnet, xnet or ollinet.
To run the tests on github, you can use the workflow trigger to run the tests.
Go to: Actions > E2E Tests (On the left sidebar) > Run Workflow
It provides a handful of parameters that can be used to modify the run according to your needs
branchyou can change the branch on which the tests runnetworkyou can change the network on which to run the testsgov1 mnemonicyou can set a custom mnemonic of the wallet you want to use for the first economic committee member (this param does not work forlocalnetwork)gov2 mnemonicyou can set a custom mnemonic of the wallet you want to use for the second economic committee member (this param does not work forlocalnetwork)
