<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> This repo uses Nx 20.7.0-beta.3 ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> This repo uses Nx 20.8.0-beta.2 ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import { defineConfig } from 'cypress';
|
|
import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
|
|
|
|
const cypressJsonConfig = {
|
|
fileServerFolder: '.',
|
|
fixturesFolder: './src/fixtures',
|
|
video: true,
|
|
videosFolder: '../../dist/cypress/graph/client-e2e/videos',
|
|
screenshotsFolder: '../../dist/cypress/graph/client-e2e/screenshots',
|
|
chromeWebSecurity: false,
|
|
specPattern: './src/e2e/**/release-static*.cy.{js,jsx,ts,tsx}',
|
|
supportFile: 'src/support/e2e.ts',
|
|
};
|
|
export default defineConfig({
|
|
e2e: {
|
|
...nxE2EPreset(__dirname, {
|
|
webServerCommands: {
|
|
default:
|
|
'pnpm exec nx run graph-client:serve --configuration=release-static',
|
|
},
|
|
}),
|
|
baseUrl: 'http://localhost:4205',
|
|
...cypressJsonConfig,
|
|
/**
|
|
* TODO(@nx/cypress): In Cypress v12,the testIsolation option is turned on by default.
|
|
* This can cause tests to start breaking where not indended.
|
|
* You should consider enabling this once you verify tests do not depend on each other
|
|
* More Info: https://docs.cypress.io/guides/references/migration-guide#Test-Isolation
|
|
**/
|
|
testIsolation: false,
|
|
// Please ensure you use `cy.origin()` when navigating between domains and remove this option.
|
|
// See https://docs.cypress.io/app/references/migration-guide#Changes-to-cyorigin
|
|
injectDocumentDomain: true,
|
|
},
|
|
});
|