PR-421183: Adding Cypress and updating packages.

This commit is contained in:
2023-03-02 07:57:42 -06:00
parent f3f0095674
commit a4dcc2c391
18 changed files with 2832 additions and 437 deletions

12
cypress.config.ts Normal file
View File

@ -0,0 +1,12 @@
import { defineConfig } from 'cypress';
export default defineConfig({
env: {},
e2e: {
/*setupNodeEvents(on, config) {
// implement node event listeners here
},*/
baseUrl: 'http://localhost',
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
experimentalRunAllSpecs: true,
},
});