18 lines
342 B
JavaScript
18 lines
342 B
JavaScript
const { defineConfig } = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
experimentalStudio: true,
|
|
|
|
env: {
|
|
FIREBASE_USERNAME: "cypress@imex.test",
|
|
FIREBASE_PASSWORD: "cypress",
|
|
},
|
|
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
baseUrl: "http://localhost:3000",
|
|
},
|
|
});
|