Skip to content

Commit e6cf3af

Browse files
Add fix for no providers enabled on the backend test
1 parent 3a62eac commit e6cf3af

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
@@ -364,14 +364,14 @@ describe("SuperTokens Third Party Email Password", function () {
364364
assert.strictEqual(url.searchParams.get("clientType"), "test-web");
365365
});
366366

367-
it.skip("should handle no providers enabled on the backend", async function () {
367+
it("should handle no providers enabled on the backend", async function () {
368368
if (!(await getFeatureFlags()).includes("recipeConfig")) {
369369
this.skip();
370370
}
371371
await assertProviders(page);
372372
await setupST({
373373
...appConfig,
374-
enabledRecipes: ["thirdparty"],
374+
enabledRecipes: ["thirdpartyemailpassword"],
375375
enabledProviders: [],
376376
});
377377

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,14 +214,14 @@ describe("SuperTokens Third Party Passwordless", function () {
214214
]);
215215
});
216216

217-
it.skip("should handle no providers enabled on the backend", async function () {
217+
it("should handle no providers enabled on the backend", async function () {
218218
if (!(await getFeatureFlags()).includes("recipeConfig")) {
219219
this.skip();
220220
}
221221
await assertProviders(page);
222222
await setupST({
223223
...appConfig,
224-
enabledRecipes: ["thirdparty"],
224+
enabledRecipes: ["thirdpartypasswordless"],
225225
enabledProviders: [],
226226
});
227227

0 commit comments

Comments
 (0)