mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
5764174087
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5535 GitOrigin-RevId: 0544edf4d8fdd1a6a8cc326a8b107ee47d2389c3
33 lines
772 B
TypeScript
33 lines
772 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
import * as customTasks from './cypress/support/tasks';
|
|
|
|
export default defineConfig({
|
|
env: {
|
|
TEST_MODE: 'parallel',
|
|
MIGRATE_URL: 'http://localhost:9693/apis/migrate',
|
|
},
|
|
viewportWidth: 1280,
|
|
viewportHeight: 720,
|
|
chromeWebSecurity: false,
|
|
video: false,
|
|
projectId: '5yiuic',
|
|
numTestsKeptInMemory: 10,
|
|
e2e: {
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
setupNodeEvents(on, config) {
|
|
on('task', {
|
|
...customTasks,
|
|
});
|
|
|
|
return config;
|
|
},
|
|
baseUrl: 'http://localhost:3000',
|
|
specPattern: [
|
|
'cypress/e2e/**/*test.{js,jsx,ts,tsx}',
|
|
'cypress/support/**/*unit.test.{js,ts}',
|
|
],
|
|
},
|
|
});
|