diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-08-14 18:53:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 18:53:15 +0200 |
commit | f89b5311492377a3ac18d756dc8c8a309e2c9e8a (patch) | |
tree | 68fc92eb556eb72cf75d4f3dd8ff424e283853c2 /tests/specs/npm/npmrc_username_password/main.js | |
parent | 1f2d48cd975b719f0248e471f3b503cb01398dfb (diff) |
feat(node): support `username` and `_password` in `.npmrc` file (#24793)
Closes #23950
Diffstat (limited to 'tests/specs/npm/npmrc_username_password/main.js')
-rw-r--r-- | tests/specs/npm/npmrc_username_password/main.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/specs/npm/npmrc_username_password/main.js b/tests/specs/npm/npmrc_username_password/main.js new file mode 100644 index 000000000..66b393636 --- /dev/null +++ b/tests/specs/npm/npmrc_username_password/main.js @@ -0,0 +1,8 @@ +import { getValue, setValue } from "@denotest/basic"; +import * as test from "@denotest2/basic"; + +console.log(getValue()); +setValue(42); +console.log(getValue()); + +console.log(test.getValue()); |