Skip to content

Commit 5bf1a56

Browse files
committed
Skip externalAuth tests until bug gets fixed
1 parent 3e7e1c8 commit 5bf1a56

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/externalAuth.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ describe('5. externalAuth.js', function() {
238238

239239
}); // 5.1
240240

241-
describe('5.2 tests only work when externalAuth is configured on DB', function() {
241+
describe.skip('5.2 tests only work when externalAuth is configured on DB', function() {
242242

243-
// need to skip these tests if external authentication is enable for the whole suite
243+
// need to skip these tests if external authentication is not configured
244244
var it = (dbConfig.externalAuth) ? global.it : global.it.skip;
245245

246246
it("5.2.1 can get connection from oracledb with external authentication", function(done) {
@@ -276,7 +276,7 @@ describe('5. externalAuth.js', function() {
276276

277277
}); // 5.2.1
278278

279-
it.skip("5.2.2 can get pool from oracledb with external authentication", function(done) {
279+
it("5.2.2 can get pool from oracledb with external authentication", function(done) {
280280

281281
async.waterfall([
282282
function(callback) {
@@ -366,7 +366,7 @@ describe('5. externalAuth.js', function() {
366366

367367
}); // 5.2.3
368368

369-
it.skip("5.2.4 gets multiple pools from oracledb", function(done) {
369+
it("5.2.4 gets multiple pools from oracledb", function(done) {
370370

371371
var getPools = function(id, callback) {
372372
oracledb.createPool(

0 commit comments

Comments
 (0)