@@ -65,7 +65,6 @@ let consoleLogs;
6565
6666describe ( "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