We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 538a990 commit 3867978Copy full SHA for 3867978
test/registry-test.ts
@@ -104,7 +104,7 @@ if (process.platform === 'win32') {
104
'SOFTWARE\\Microsoft\\Windows\\CurrentVersion',
105
'ValueTestSz',
106
RegistryValueType.REG_SZ,
107
- 'Value 123 !'
+ 'Value 123 ! [email protected] (456)'
108
)
109
} catch (e) {
110
console.log(e)
@@ -121,5 +121,13 @@ if (process.platform === 'win32') {
121
122
expect(result).toBeTruthy()
123
})
124
+
125
+ it('can create a registry key in WOW6432Node', () => {
126
+ const result = createKey(
127
+ HKEY.HKEY_CURRENT_USER,
128
+ 'SOFTWARE\\WOW6432Node\\UnitTests'
129
+ )
130
+ expect(result).toBeTruthy()
131
+ })
132
133
}
0 commit comments