Skip to content

Commit 3187765

Browse files
committed
[js] guard failing virtual authenticator tests from running on firefox
1 parent 08c7c01 commit 3187765

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

javascript/node/selenium-webdriver/test/virtualAuthenticator_test.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ suite(function (env) {
182182
}
183183
)
184184

185-
ignore(browsers(Browser.SAFARI)).it(
185+
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
186186
'should test add non-resident credential',
187187
async function () {
188188
/**
@@ -206,7 +206,7 @@ suite(function (env) {
206206
}
207207
)
208208

209-
ignore(browsers(Browser.SAFARI)).it(
209+
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
210210
'should test add non-resident credential when authenticator uses U2F protocol',
211211
async function () {
212212
/**
@@ -239,7 +239,7 @@ suite(function (env) {
239239
}
240240
)
241241

242-
ignore(browsers(Browser.SAFARI)).it(
242+
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
243243
'should test add resident credential',
244244
async function () {
245245
/**
@@ -269,7 +269,7 @@ suite(function (env) {
269269
}
270270
)
271271

272-
ignore(browsers(Browser.SAFARI)).it(
272+
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
273273
'should test add resident credential not supported when authenticator uses U2F protocol',
274274
async function () {
275275
/**
@@ -309,7 +309,7 @@ suite(function (env) {
309309
}
310310
)
311311

312-
ignore(browsers(Browser.SAFARI)).it(
312+
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
313313
'should test get credentials',
314314
async function () {
315315
/**
@@ -365,7 +365,7 @@ suite(function (env) {
365365
}
366366
)
367367

368-
ignore(browsers(Browser.SAFARI)).it(
368+
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
369369
'should test remove credential by rawID',
370370
async function () {
371371
driver = await createRkDisabledU2fAuthenticator(driver)
@@ -390,7 +390,7 @@ suite(function (env) {
390390
}
391391
)
392392

393-
ignore(browsers(Browser.SAFARI)).it(
393+
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
394394
'should test remove credential by base64url Id',
395395
async function () {
396396
driver = await createRkDisabledU2fAuthenticator(driver)
@@ -417,7 +417,7 @@ suite(function (env) {
417417
}
418418
)
419419

420-
ignore(browsers(Browser.SAFARI)).it(
420+
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
421421
'should test remove all credentials',
422422
async function () {
423423
driver = await createRkDisabledU2fAuthenticator(driver)
@@ -456,7 +456,7 @@ suite(function (env) {
456456
}
457457
)
458458

459-
ignore(browsers(Browser.SAFARI)).it(
459+
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
460460
'should test set user verified',
461461
async function () {
462462
driver = await createRkEnabledCTAP2Authenticator(driver)

0 commit comments

Comments
 (0)