Files
CRM-Mono/apps/web-e2e/cypress.config.ts
Igor Rybakov b9918116ae
Some checks failed
CI / main (push) Has been cancelled
Переименование с init названия
2026-03-06 23:27:57 +02:00

16 lines
447 B
TypeScript

import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
...nxE2EPreset(__filename, {
cypressDir: 'src',
webServerCommands: {
default: 'npx nx run @spairtech/web:dev',
},
ciWebServerCommand: 'npx nx run @spairtech/web:start',
ciBaseUrl: 'http://localhost:3000',
}),
baseUrl: 'http://127.0.0.1:3000',
},
});