diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-03 18:27:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-03 18:27:05 -0400 |
| commit | 84bafd11d52609e74a52df8e57752d5e3c25f717 (patch) | |
| tree | cdc282ab3a808bc29987cdb45c0b462ae1e080ec /cli/tests/testdata/package_json/invalid_value/ok.ts | |
| parent | 5c43e2a665c9dae7aff3ba757e589f10ec3aa062 (diff) | |
fix: lazily surface errors in package.json deps parsing (#17974)
Closes #17941
Diffstat (limited to 'cli/tests/testdata/package_json/invalid_value/ok.ts')
| -rw-r--r-- | cli/tests/testdata/package_json/invalid_value/ok.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tests/testdata/package_json/invalid_value/ok.ts b/cli/tests/testdata/package_json/invalid_value/ok.ts new file mode 100644 index 000000000..ce517439f --- /dev/null +++ b/cli/tests/testdata/package_json/invalid_value/ok.ts @@ -0,0 +1,4 @@ +import * as test from "@denotest/esm-basic"; + +test.setValue(2); +console.log(test.getValue()); |
