Skip to content

Commit

Permalink
[js] guard failing virtual authenticator tests from running on firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Feb 6, 2024
1 parent 08c7c01 commit 3187765
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ suite(function (env) {
}
)

ignore(browsers(Browser.SAFARI)).it(
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
'should test add non-resident credential',
async function () {
/**
Expand All @@ -206,7 +206,7 @@ suite(function (env) {
}
)

ignore(browsers(Browser.SAFARI)).it(
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
'should test add non-resident credential when authenticator uses U2F protocol',
async function () {
/**
Expand Down Expand Up @@ -239,7 +239,7 @@ suite(function (env) {
}
)

ignore(browsers(Browser.SAFARI)).it(
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
'should test add resident credential',
async function () {
/**
Expand Down Expand Up @@ -269,7 +269,7 @@ suite(function (env) {
}
)

ignore(browsers(Browser.SAFARI)).it(
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
'should test add resident credential not supported when authenticator uses U2F protocol',
async function () {
/**
Expand Down Expand Up @@ -309,7 +309,7 @@ suite(function (env) {
}
)

ignore(browsers(Browser.SAFARI)).it(
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
'should test get credentials',
async function () {
/**
Expand Down Expand Up @@ -365,7 +365,7 @@ suite(function (env) {
}
)

ignore(browsers(Browser.SAFARI)).it(
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
'should test remove credential by rawID',
async function () {
driver = await createRkDisabledU2fAuthenticator(driver)
Expand All @@ -390,7 +390,7 @@ suite(function (env) {
}
)

ignore(browsers(Browser.SAFARI)).it(
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
'should test remove credential by base64url Id',
async function () {
driver = await createRkDisabledU2fAuthenticator(driver)
Expand All @@ -417,7 +417,7 @@ suite(function (env) {
}
)

ignore(browsers(Browser.SAFARI)).it(
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
'should test remove all credentials',
async function () {
driver = await createRkDisabledU2fAuthenticator(driver)
Expand Down Expand Up @@ -456,7 +456,7 @@ suite(function (env) {
}
)

ignore(browsers(Browser.SAFARI)).it(
ignore(browsers(Browser.SAFARI, Browser.FIREFOX)).it(
'should test set user verified',
async function () {
driver = await createRkEnabledCTAP2Authenticator(driver)
Expand Down

0 comments on commit 3187765

Please sign in to comment.