Skip to content

Commit 6ce9986

Browse files
Add fix for no providers enabled on the backend test
1 parent ffb7950 commit 6ce9986

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,14 +368,14 @@ describe("SuperTokens Third Party Email Password", function () {
368368
assert.strictEqual(url.searchParams.get("clientType"), "test-web");
369369
});
370370

371-
it.skip("should handle no providers enabled on the backend", async function () {
371+
it("should handle no providers enabled on the backend", async function () {
372372
if (!(await getFeatureFlags()).includes("recipeConfig")) {
373373
this.skip();
374374
}
375375
await assertProviders(page);
376376
await setupST({
377377
...appConfig,
378-
enabledRecipes: ["thirdparty"],
378+
enabledRecipes: ["thirdpartyemailpassword"],
379379
enabledProviders: [],
380380
});
381381

test/end-to-end/thirdpartypasswordless.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,14 @@ describe("SuperTokens Third Party Passwordless", function () {
221221
});
222222
});
223223

224-
it.skip("should handle no providers enabled on the backend", async function () {
224+
it("should handle no providers enabled on the backend", async function () {
225225
if (!(await getFeatureFlags()).includes("recipeConfig")) {
226226
this.skip();
227227
}
228228
await assertProviders(page);
229229
await setupST({
230230
...appConfig,
231-
enabledRecipes: ["thirdparty"],
231+
enabledRecipes: ["thirdpartypasswordless"],
232232
enabledProviders: [],
233233
});
234234

0 commit comments

Comments
 (0)