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 1eb4411 commit da199bdCopy full SHA for da199bd
test/unit.js
@@ -1,3 +1,4 @@
1
+'use strict'
2
const sinon = require('sinon');
3
const sinonChai = require('sinon-chai');
4
const chai = require('chai');
@@ -96,7 +97,7 @@ describe('node-vault', () => {
96
97
defaults: defaultsStub,
98
},
99
};
- vault = index(vaultConfig);
100
+ const vault = index(vaultConfig);
101
vault.endpoint.should.equal('http://localhost:8200');
102
});
103
@@ -108,9 +109,9 @@ describe('node-vault', () => {
108
109
110
111
112
113
- })
114
+ });
115
116
117
describe('client', () => {
0 commit comments