@@ -63,7 +63,6 @@ let consoleLogs;
6363
6464describe ( "General error rendering" , function ( ) {
6565 let coreUrl ;
66- let enabledRecipes = undefined ;
6766 before ( async function ( ) {
6867 const _isGeneralErrorSupported = await isGeneralErrorSupported ( ) ;
6968 if ( ! _isGeneralErrorSupported ) {
@@ -77,7 +76,7 @@ describe("General error rendering", function () {
7776 beforeEach ( async function ( ) {
7877 await backendHook ( "beforeEach" ) ;
7978 coreUrl = await setupCoreApp ( ) ;
80- await setupST ( { coreUrl, enabledRecipes } ) ;
79+ await setupST ( { coreUrl } ) ;
8180 page = await browser . newPage ( ) ;
8281
8382 consoleLogs = [ ] ;
@@ -210,18 +209,11 @@ describe("General error rendering", function () {
210209 } ) ;
211210
212211 describe ( "ThirdPartyEmailPassword" , function ( ) {
213- before ( async function ( ) {
214- enabledRecipes = [ "thirdpartyemailpassword" , "session" ] ;
215- } ) ;
216-
217212 getEmailPasswordTests ( "thirdpartyemailpassword" , "THIRD_PARTY_EMAIL_PASSWORD" ) ;
218213 getThirdPartyTests ( "thirdpartyemailpassword" , "THIRD_PARTY_EMAIL_PASSWORD" ) ;
219214 } ) ;
220215
221216 describe ( "ThirdPartyPasswordless" , function ( ) {
222- before ( async function ( ) {
223- enabledRecipes = [ "thirdpartypasswordless" , "session" ] ;
224- } ) ;
225217 getThirdPartyTests ( "thirdpartypasswordless" , "THIRD_PARTY_PASSWORDLESS" ) ;
226218 } ) ;
227219
0 commit comments