Skip to content

Commit 1100f24

Browse files
deepjyoti30-stnamsnath
authored andcommitted
Revert "Skip thirdpartyemailpassword if not enabled in backend"
This reverts commit 9802413.
1 parent d4fe9e0 commit 1100f24

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

test/end-to-end/thirdpartyemailpassword.test.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ import {
4949
backendHook,
5050
setupCoreApp,
5151
setupST,
52-
isThirdPartyEmailPasswordSupported,
5352
} from "../helpers";
5453
import {
5554
TEST_CLIENT_BASE_URL,
@@ -72,10 +71,6 @@ describe("SuperTokens Third Party Email Password", function () {
7271
const appConfig = {};
7372

7473
before(async function () {
75-
if (!(await isThirdPartyEmailPasswordSupported())) {
76-
this.skip();
77-
}
78-
7974
await backendHook("before");
8075
const coreUrl = await setupCoreApp();
8176
appConfig.coreUrl = coreUrl;

test/helpers.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,15 +1003,6 @@ export async function isThirdPartyPasswordlessSupported() {
10031003
return false;
10041004
}
10051005

1006-
export async function isThirdPartyEmailPasswordSupported() {
1007-
const features = await getFeatureFlags();
1008-
if (features.includes("thirdpartyemailpassword")) {
1009-
return true;
1010-
}
1011-
1012-
return false;
1013-
}
1014-
10151006
export async function isUserRolesSupported() {
10161007
const features = await getFeatureFlags();
10171008
if (!features.includes("userroles")) {

0 commit comments

Comments
 (0)