diff options
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()); |