Files
xahau.js/packages/xrpl/test/integration/README.md
Jackson Mills c5433c6ac0 Update docker to use xrpllabs image (#2223)
Added additional documentation and config.
2023-04-06 11:11:46 -07:00

743 B

To run integration tests:

  1. Run rippled in standalone node, either in a docker container (preferred) or by installing rippled.
  • Go to the top-level of the xrpl.js repo, just above the packages folder.
  • With docker, run docker run -p 6006:6006 --interactive -t --volume $PWD/.ci-config:/config/ xrpllabsofficial/xrpld:latest -a --start
  • Or download and build rippled and run ./rippled -a --start
    • If you'd like to use the latest rippled amendments, you should modify your rippled.cfg file to enable amendments in the [amendments] section. You can view .ci-config/rippled.cfg in the top level folder as an example of this.
  1. Run npm test:integration or npm test:browser