diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-06-05 20:22:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-05 19:22:40 +0000 |
commit | 0db73f6333639bf74a9c12dfe779287623891ab7 (patch) | |
tree | 2971415661b4819a198693f14f18ebdb5882e04f /tests/specs/npm/npmrc_bad_registry_config/main.js | |
parent | a013b9113d36cade5f184e73ebf2aad3e50ac9bf (diff) |
fix: update deno_npm (#24065)
Diffstat (limited to 'tests/specs/npm/npmrc_bad_registry_config/main.js')
-rw-r--r-- | tests/specs/npm/npmrc_bad_registry_config/main.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/npm/npmrc_bad_registry_config/main.js b/tests/specs/npm/npmrc_bad_registry_config/main.js new file mode 100644 index 000000000..e8ccf7611 --- /dev/null +++ b/tests/specs/npm/npmrc_bad_registry_config/main.js @@ -0,0 +1,5 @@ +import { getValue, setValue } from "@denotest/basic"; + +console.log(getValue()); +setValue(42); +console.log(getValue()); |