From fdf80baf6f6d0047eab4bb749ca559c3b529997c Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Tue, 6 Sep 2022 03:28:23 +0000 Subject: [PATCH] update integration test instructions --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a2d783..9cbaf74 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,15 @@ go test ./path/to/package ### Integration Tests -Integration tests use a custom bash testing framework that interacts with a running instance of the chain. To run all integration tests: +Integration tests use a custom bash testing framework that interacts with a running instance of the chain. + +Before running any tests, make sure that the dev chain is running: + +``` +ignite chain serve +``` + +To run all integration tests: ``` make test