Tn/add cypress (#47)

* added cypress, updated toml with cypress plugin, and created testing for the form

* Update cypress/e2e/form.cy.js

Co-authored-by: Prince Wilson <maxcell.wilson@gmail.com>

Co-authored-by: Prince Wilson <maxcell.wilson@gmail.com>
This commit is contained in:
Tatyana
2022-06-10 15:40:07 -05:00
committed by GitHub
parent 9ed752f292
commit 6374ff66aa
5 changed files with 2068 additions and 0 deletions

9
cypress.config.js Normal file
View File

@ -0,0 +1,9 @@
const { defineConfig } = require('cypress')
module.exports = defineConfig({
e2e: {
baseUrl: "http://localhost:8888/",
supportFile: false,
chromeWebSecurity: false,
},
});