mirror of
https://github.com/PeWu/topola-viewer.git
synced 2025-12-23 18:50:04 +00:00
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
viewportWidth: 1280,
|
|
viewportHeight: 1024,
|
|
chromeWebSecurity: false,
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000/#',
|
|
supportFile: false,
|
|
},
|
|
})
|