Comparing version 0.4.2 to 0.5.0
{ | ||
"name": "regedit", | ||
"version": "0.4.2", | ||
"version": "0.5.0", | ||
"description": "Read, Write, List and do all sorts of funky stuff to the windows registry using node.js and windows script host", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -343,2 +343,6 @@ // TODO need to find a better way to test the 32bit/64bit specific scenarios | ||
values.should.have.property('测试') | ||
values['测试'].type.should.eql('REG_SZ') | ||
values['测试'].value.should.eql('值 test for non-English environment') | ||
done() | ||
@@ -381,2 +385,6 @@ }) | ||
values.should.have.property('测试') | ||
values['测试'].type.should.eql('REG_SZ') | ||
values['测试'].value.should.eql('值 test for non-English environment') | ||
done() | ||
@@ -419,2 +427,6 @@ }) | ||
values.should.have.property('测试') | ||
values['测试'].type.should.eql('REG_SZ') | ||
values['测试'].value.should.eql('值 test for non-English environment') | ||
done() | ||
@@ -457,2 +469,6 @@ }) | ||
values.should.have.property('测试') | ||
values['测试'].type.should.eql('REG_SZ') | ||
values['测试'].value.should.eql('值 test for non-English environment') | ||
done() | ||
@@ -494,2 +510,7 @@ }) | ||
value: ['a', 'b', 'c'] | ||
}, | ||
'测试': { | ||
type: 'reg_sz', | ||
value: '值 test for non-English environment' | ||
} | ||
@@ -496,0 +517,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
140066
1712