diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-13 14:18:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-13 18:18:29 +0000 |
| commit | 44b0d4cb11853bcdc7aa61c1412719a13d572b24 (patch) | |
| tree | 074bcf6b77b4174343c4d0f3c239c53b7adf8350 /cli/tests/testdata/package_json/basic | |
| parent | e8f22c076525c2fa55115349157f67085df287bf (diff) | |
fix(npm): show a progress bar when initializing the node_modules folder (#18136)
Creating the node_modules folder when the packages are already
downloaded can take a bit of time and not knowing what is going on can
be confusing. It's better to show a progress bar.
Diffstat (limited to 'cli/tests/testdata/package_json/basic')
4 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/testdata/package_json/basic/lib.bench.out b/cli/tests/testdata/package_json/basic/lib.bench.out index 589f17655..b16d9e7ac 100644 --- a/cli/tests/testdata/package_json/basic/lib.bench.out +++ b/cli/tests/testdata/package_json/basic/lib.bench.out @@ -1,5 +1,6 @@ Download http://localhost:4545/npm/registry/@denotest/esm-basic Download http://localhost:4545/npm/registry/@denotest/esm-basic/1.0.0.tgz +Initialize @denotest/esm-basic@1.0.0 Check file:///[WILDCARD]/lib.bench.ts cpu: [WILDCARD] runtime: [WILDCARD] diff --git a/cli/tests/testdata/package_json/basic/lib.test.out b/cli/tests/testdata/package_json/basic/lib.test.out index f0fe89612..fa1cbb0f7 100644 --- a/cli/tests/testdata/package_json/basic/lib.test.out +++ b/cli/tests/testdata/package_json/basic/lib.test.out @@ -1,5 +1,6 @@ Download http://localhost:4545/npm/registry/@denotest/esm-basic Download http://localhost:4545/npm/registry/@denotest/esm-basic/1.0.0.tgz +Initialize @denotest/esm-basic@1.0.0 Check file://[WILDCARD]/lib.test.ts running 1 test from [WILDCARD]lib.test.ts should add ... ok ([WILDCARD]) diff --git a/cli/tests/testdata/package_json/basic/main.cache.out b/cli/tests/testdata/package_json/basic/main.cache.out index 4be62e9eb..1c729e2a3 100644 --- a/cli/tests/testdata/package_json/basic/main.cache.out +++ b/cli/tests/testdata/package_json/basic/main.cache.out @@ -1,2 +1,3 @@ Download http://localhost:4545/npm/registry/@denotest/esm-basic Download http://localhost:4545/npm/registry/@denotest/esm-basic/1.0.0.tgz +Initialize @denotest/esm-basic@1.0.0 diff --git a/cli/tests/testdata/package_json/basic/main.check.out b/cli/tests/testdata/package_json/basic/main.check.out index 09c377314..a506cb0ed 100644 --- a/cli/tests/testdata/package_json/basic/main.check.out +++ b/cli/tests/testdata/package_json/basic/main.check.out @@ -1,3 +1,4 @@ Download http://localhost:4545/npm/registry/@denotest/esm-basic Download http://localhost:4545/npm/registry/@denotest/esm-basic/1.0.0.tgz +Initialize @denotest/esm-basic@1.0.0 Check file://[WILDCARD]/main.ts |
