Skip to content

Commit 361a7d8

Browse files
committed
Update integration testing guide with clean-up step.
1 parent 8babd96 commit 361a7d8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/development-guide/IntegrationTests.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,15 @@ cmd /c ./gradlew --no-parallel --no-daemon test-all-environments
6969
```
7070

7171
Test results can be found at `wrapper/build/report/index.html`.
72+
73+
To re-run tests after making code changes, do a clean re-build so that the next test run will pick up the new changes:
74+
75+
macOS:
76+
```bash
77+
./gradlew clean
78+
```
79+
80+
Windows:
81+
```bash
82+
cmd /c ./gradlew clean
83+
```

0 commit comments

Comments
 (0)