Skip to content

Commit b74528d

Browse files
authored
test: fix tests in fe sdk ci (#738)
1 parent f7f0f52 commit b74528d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/end-to-end/multitenancy.dynamic_login_methods.test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ import {
3636
clickOnProviderButton,
3737
loginWithAuth0,
3838
isMultitenancySupported,
39-
isAccountLinkingSupported,
4039
isMultitenancyManagementEndpointsSupported,
4140
setupTenant,
4241
} from "../helpers";
@@ -135,7 +134,7 @@ describe("SuperTokens Multitenancy dynamic login methods", function () {
135134
const providers = await getProvidersLabels(page);
136135
compareArrayContents(
137136
providers,
138-
(await isAccountLinkingSupported())
137+
(await isMultitenancyManagementEndpointsSupported())
139138
? [
140139
"Continue with Github",
141140
"Continue with Google",
@@ -382,7 +381,7 @@ describe("SuperTokens Multitenancy dynamic login methods", function () {
382381
const providers = await getProvidersLabels(page);
383382
compareArrayContents(
384383
providers,
385-
(await isAccountLinkingSupported())
384+
(await isMultitenancyManagementEndpointsSupported())
386385
? [
387386
"Continue with Github",
388387
"Continue with Google",

0 commit comments

Comments
 (0)