graphql-engine/frontend/apps/console-ce-e2e/cypress.config.ts
Stefano Magni d864bed4f4 console: Setup cypress on the Nx monorepo (close #5463)
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5675
GitOrigin-RevId: b320b6f5bb092d20a4de8e51f6711323dd2b0a05
2022-08-31 09:04:45 +00:00

38 lines
888 B
TypeScript

import { defineConfig } from 'cypress';
import { nxE2EPreset } from '@nrwl/cypress/plugins/cypress-preset';
import * as customTasks from './src/support/tasks';
const nxConfig = nxE2EPreset(__dirname);
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: {
...nxConfig,
// 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: [
'src/e2e/**/*test.{js,jsx,ts,tsx}',
'src/support/**/*unit.test.{js,ts}',
],
},
});