1234567891011 |
- import { defineConfig } from 'cypress';
- export default defineConfig({
- e2e: {
- baseUrl: 'http://localhost:10086/#/pages/index/index', // Adjust this to match your application's base URL
- specPattern: '__e2e_test__/**/*.spec.ts',
- setupNodeEvents(on, config) {
- return require('./cypress/plugins/index.js')(on, config);
- },
- },
- });
|