install cypress and add initial test

This commit is contained in:
Francis Cao
2024-02-27 21:41:34 -08:00
parent 23a45a3109
commit 5b9f0707b8
10 changed files with 768 additions and 20 deletions
+5
View File
@@ -0,0 +1,5 @@
/// <reference types="cypress" />
Cypress.Commands.add('dataCy', value => {
return cy.get(`[data-cy=${value}]`);
});