From 19c1d7340596c4f4b01b7e66e0394d760a8a1979 Mon Sep 17 00:00:00 2001 From: Jacob MacDonald Date: Mon, 13 Oct 2025 09:43:52 -0700 Subject: [PATCH] add bundle command info to integration test docs (#11034) --- docs/integration-tests.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/integration-tests.md b/docs/integration-tests.md index 7ea8b28b3d..b6b8c1ec51 100644 --- a/docs/integration-tests.md +++ b/docs/integration-tests.md @@ -12,6 +12,18 @@ verify that it behaves as expected when interacting with the file system. These tests are located in the `integration-tests` directory and are run using a custom test runner. +## Building the tests + +Prior to running any integration tests, you need to create a release bundle that +you want to actually test: + +```bash +npm run bundle +``` + +You must re-run this command after making any changes to the CLI source code, +but not after making changes to tests. + ## Running the tests The integration tests are not run as part of the default `npm run test` command.