@@ -4,14 +4,14 @@ const assert = require('assert');
4
4
5
5
module . exports = require ( '../common' ) . runTest ( test ) ;
6
6
7
- function test ( binding ) {
8
- function testSetProperty ( nativeSetProperty ) {
7
+ function test ( binding ) {
8
+ function testSetProperty ( nativeSetProperty , key = 'test' ) {
9
9
const obj = { } ;
10
- assert . strictEqual ( nativeSetProperty ( obj , 'test' , 1 ) , true ) ;
11
- assert . strictEqual ( obj . test , 1 ) ;
10
+ assert . strictEqual ( nativeSetProperty ( obj , key , 1 ) , true ) ;
11
+ assert . strictEqual ( obj [ key ] , 1 ) ;
12
12
}
13
13
14
- function testShouldThrowErrorIfKeyIsInvalid ( nativeSetProperty ) {
14
+ function testShouldThrowErrorIfKeyIsInvalid ( nativeSetProperty ) {
15
15
assert . throws ( ( ) => {
16
16
nativeSetProperty ( undefined , 'test' , 1 ) ;
17
17
} , / C a n n o t c o n v e r t u n d e f i n e d o r n u l l t o o b j e c t / ) ;
@@ -21,6 +21,7 @@ function test(binding) {
21
21
testSetProperty ( binding . object . setPropertyWithNapiWrapperValue ) ;
22
22
testSetProperty ( binding . object . setPropertyWithCStyleString ) ;
23
23
testSetProperty ( binding . object . setPropertyWithCppStyleString ) ;
24
+ testSetProperty ( binding . object . setPropertyWithUint32 , 12 ) ;
24
25
25
26
testShouldThrowErrorIfKeyIsInvalid ( binding . object . setPropertyWithNapiValue ) ;
26
27
testShouldThrowErrorIfKeyIsInvalid ( binding . object . setPropertyWithNapiWrapperValue ) ;
0 commit comments