mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
fc753ffb42
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4849 GitOrigin-RevId: 10e0fd62344a0c5c7028ad480b747b7f64c9c773
24 lines
653 B
TypeScript
24 lines
653 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
env: {
|
|
BASE_URL: 'http://localhost:3000',
|
|
TEST_MODE: 'parallel',
|
|
MIGRATE_URL: 'http://localhost:9693/apis/migrate',
|
|
},
|
|
viewportWidth: 1280,
|
|
viewportHeight: 720,
|
|
chromeWebSecurity: false,
|
|
video: false,
|
|
projectId: '5yiuic',
|
|
e2e: {
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
setupNodeEvents(on, config) {
|
|
return require('./cypress/plugins/index.js')(on, config);
|
|
},
|
|
baseUrl: 'http://localhost:3000',
|
|
specPattern: 'cypress/e2e/**/*test.{js,jsx,ts,tsx}',
|
|
},
|
|
});
|