Init
Some checks failed
CI / main (push) Has been cancelled

This commit is contained in:
Igor Rybakov
2026-03-06 21:47:37 +02:00
parent fb94cbc557
commit acd7ea0792
73 changed files with 26010 additions and 44 deletions

View File

@@ -0,0 +1,15 @@
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 @my-monorepo/web:dev',
},
ciWebServerCommand: 'npx nx run @my-monorepo/web:start',
ciBaseUrl: 'http://localhost:3000',
}),
baseUrl: 'http://127.0.0.1:3000',
},
});