CIAM-1694 SigningInTest failure - Missing WebAuthn category

This commit is contained in:
Martin Bartoš 2021-12-22 10:00:41 +01:00 committed by Pedro Igor
parent 96b2669a00
commit fd23d1bd06

View file

@ -90,8 +90,9 @@ public class SigningInTest extends BaseAccountPageTest {
public void categoriesTest() { public void categoriesTest() {
testContext.setTestRealmReps(emptyList()); // reimport realm after this test testContext.setTestRealmReps(emptyList()); // reimport realm after this test
assertThat(signingInPage.getCategoriesCount(), is(1)); assertThat(signingInPage.getCategoriesCount(), is(2));
assertThat(signingInPage.getCategoryTitle("basic-authentication"), is("Basic Authentication")); assertThat(signingInPage.getCategoryTitle("basic-authentication"), is("Basic Authentication"));
assertThat(signingInPage.getCategoryTitle("two-factor"), is("Two-Factor Authentication"));
} }
@Test @Test