* 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>
9 lines
187 B
JavaScript
9 lines
187 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: "http://localhost:8888/",
|
|
supportFile: false,
|
|
chromeWebSecurity: false,
|
|
},
|
|
}); |