mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-02-05 21:23:12 +08:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
import {defineConfig} from 'cypress';
|
|
|
|
export default defineConfig({
|
|
viewportWidth: 1000,
|
|
viewportHeight: 700,
|
|
e2e: {
|
|
baseUrl: 'http://127.0.0.1:10240/',
|
|
supportFile: 'cypress/support/utils.ts',
|
|
},
|
|
});
|