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 fb18575 commit ad6f9cdCopy full SHA for ad6f9cd
test/externalAuth.js
@@ -244,8 +244,9 @@ describe('5. externalAuth.js', function() {
244
245
describe('5.2 tests only work when externalAuth is configured on DB', function() {
246
247
- // need to skip these tests if external authentication is not configured
248
- var it = (process.env.NODE_ORACLEDB_EXTERNALAUTH === true) ? global.it : global.it.skip;
+ before(function() {
+ if ( !(process.env.NODE_ORACLEDB_EXTERNALAUTH) ) this.skip();
249
+ });
250
251
it("5.2.1 can get connection from oracledb with external authentication", function(done) {
252
0 commit comments