blob: 880b9fbef41905605ded4b181872e4df923371d2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// eslint-disable-next-line n/no-unpublished-import
import {defineConfig} from 'cypress';
// eslint-disable-next-line import/no-default-export
export default defineConfig({
e2e: {
baseUrl: 'http://127.0.0.1:10240/',
supportFile: 'cypress/support/utils.ts',
},
});
|