test(cypress): use pnpm instead of yarn

This commit is contained in:
fallenbagel
2024-06-23 23:09:45 +05:00
parent cb7e2f073e
commit ffb20ebe93

View File

@@ -2,6 +2,6 @@ import './commands';
before(() => {
if (Cypress.env('SEED_DATABASE')) {
cy.exec('yarn cypress:prepare');
cy.exec('pnpm cypress:prepare');
}
});