7 lines
134 B
JavaScript
7 lines
134 B
JavaScript
const { defineConfig } = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:8080',
|
|
},
|
|
});
|