9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3001',
|
|
supportFile: 'cypress/support/e2e.ts',
|
|
},
|
|
});
|