8 lines
136 B
JavaScript
8 lines
136 B
JavaScript
|
const { defineConfig } = require("cypress");
|
||
|
|
||
|
module.exports = defineConfig({
|
||
|
e2e: {
|
||
|
baseUrl: "http://localhost:3000",
|
||
|
},
|
||
|
});
|