From ffb20ebe935987373ef74ca3dc50abedaa46dd4e Mon Sep 17 00:00:00 2001 From: fallenbagel <98979876+Fallenbagel@users.noreply.github.com> Date: Sun, 23 Jun 2024 23:09:45 +0500 Subject: [PATCH] test(cypress): use pnpm instead of yarn --- cypress/support/e2e.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts index 7a7697cab..e825c54f5 100644 --- a/cypress/support/e2e.ts +++ b/cypress/support/e2e.ts @@ -2,6 +2,6 @@ import './commands'; before(() => { if (Cypress.env('SEED_DATABASE')) { - cy.exec('yarn cypress:prepare'); + cy.exec('pnpm cypress:prepare'); } });