diff --git a/test/js/local/cppVrpcLocalTest.js b/test/js/local/cppVrpcLocalTest.js index 374a632..0d48406 100644 --- a/test/js/local/cppVrpcLocalTest.js +++ b/test/js/local/cppVrpcLocalTest.js @@ -17,15 +17,19 @@ emitter.on('removed', entry => removedEntries.push(entry)) describe('An instance of the VrpcLocal class', () => { let vrpc + let vrpc2 it('should be construct-able given a c++ native addon', () => { vrpc = new VrpcLocal(addon) + vrpc2 = new VrpcLocal(addon) assert.ok(vrpc) }) describe('The corresponding VrpcLocal instance', () => { let testClass + let testClass2 let anotherTestClass it('should be able to create a TestClass proxy using default constructor', () => { testClass = vrpc.create('TestClass') + testClass2 = vrpc.create('TestClass') assert.ok(testClass) }) describe('The corresponding TestClass proxy', () => {