From 00a33d4826848dffa4753ff4e13284f9b1d7f543 Mon Sep 17 00:00:00 2001 From: Marcelo Shima Date: Wed, 23 Oct 2024 13:16:54 -0300 Subject: [PATCH] revert tests --- .../spring-boot/generators/graalvm/generator.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/generators/spring-boot/generators/graalvm/generator.ts b/generators/spring-boot/generators/graalvm/generator.ts index 798f75550d0d..ec7e690e645e 100644 --- a/generators/spring-boot/generators/graalvm/generator.ts +++ b/generators/spring-boot/generators/graalvm/generator.ts @@ -237,18 +237,6 @@ export default class GraalvmGenerator extends BaseApplicationGenerator { ), ); }, - - springBootE2e({ application }) { - if (!application.devDatabaseTypeH2Any || !application.cypressTests || !application.backendTypeSpringBoot) return; - this.editFile(`${application.cypressDir}e2e/administration/administration.cy.ts`, { assertModified: true }, contents => - contents.replace("describe('/docs'", `describe.skip('/docs'`), - ); - this.editFile(`${application.cypressDir}e2e/account/login-page.cy.ts`, { assertModified: true }, contents => - contents - .replace("it('requires username'", `it.skip('requires username'`) - .replace("it('requires password'", `it.skip('requires password'`), - ); - }, }); }