Skip to content

Commit b9b9b69

Browse files
committed
update: remove enabledRecipes config
1 parent 725d168 commit b9b9b69

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

test/end-to-end/generalerror.test.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ let consoleLogs;
6565

6666
describe("General error rendering", function () {
6767
let coreUrl;
68-
let enabledRecipes = undefined;
6968
before(async function () {
7069
const _isGeneralErrorSupported = await isGeneralErrorSupported();
7170
if (!_isGeneralErrorSupported) {
@@ -79,7 +78,7 @@ describe("General error rendering", function () {
7978
beforeEach(async function () {
8079
await backendHook("beforeEach");
8180
coreUrl = await setupCoreApp();
82-
await setupST({ coreUrl, enabledRecipes });
81+
await setupST({ coreUrl });
8382
page = await browser.newPage();
8483

8584
consoleLogs = [];
@@ -214,18 +213,11 @@ describe("General error rendering", function () {
214213
});
215214

216215
describe("ThirdPartyEmailPassword", function () {
217-
before(async function () {
218-
enabledRecipes = ["thirdpartyemailpassword", "session"];
219-
});
220-
221216
getEmailPasswordTests("thirdpartyemailpassword", "THIRD_PARTY_EMAIL_PASSWORD");
222217
getThirdPartyTests("thirdpartyemailpassword", "THIRD_PARTY_EMAIL_PASSWORD");
223218
});
224219

225220
describe("ThirdPartyPasswordless", function () {
226-
before(async function () {
227-
enabledRecipes = ["thirdpartypasswordless", "session"];
228-
});
229221
getThirdPartyTests("thirdpartypasswordless", "THIRD_PARTY_PASSWORDLESS");
230222
});
231223

0 commit comments

Comments
 (0)