-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
829076d
commit 506df85
Showing
6 changed files
with
457 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
190 changes: 190 additions & 0 deletions
190
packages/cypress/src/migrations/update-16-8-0/cypress-13.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,190 @@ | ||
import { Tree, addProjectConfiguration, readJson } from '@nx/devkit'; | ||
import { createTreeWithEmptyWorkspace } from 'nx/src/devkit-testing-exports'; | ||
import { updateToCypress13 } from './cypress-13'; | ||
|
||
describe('Cypress 13', () => { | ||
let tree: Tree; | ||
beforeEach(() => { | ||
tree = createTreeWithEmptyWorkspace({ layout: 'apps-libs' }); | ||
}); | ||
|
||
it('should update deps to cypress v13', async () => { | ||
setup(tree, { name: 'my-app' }); | ||
|
||
await updateToCypress13(tree); | ||
console.log(readJson(tree, 'package.json')); | ||
expect(readJson(tree, 'package.json').devDependencies.cypress).toEqual( | ||
'^13.0.0' | ||
); | ||
}); | ||
|
||
it('should update videoUploadOnPasses from config w/setupNodeEvents', async () => { | ||
setup(tree, { name: 'my-app-video-upload-on-passes' }); | ||
await updateToCypress13(tree); | ||
expect( | ||
tree.read('apps/my-app-video-upload-on-passes/cypress.config.ts', 'utf-8') | ||
).toMatchInlineSnapshot(` | ||
"import fs from 'fs'; | ||
import { defineConfig } from 'cypress'; | ||
import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset'; | ||
import { nxComponentTestingPreset } from '@nx/react/plugins/component-testing'; | ||
export default defineConfig({ | ||
something: 'blah', | ||
// nodeVersion: 'system', | ||
// videoUploadOnPasses: false , | ||
e2e: { | ||
...nxE2EPreset(__filename), | ||
setupNodeEvents(on, config) { | ||
const a = ''; | ||
removePassedSpecs(on); | ||
}, | ||
}, | ||
component: { | ||
...nxComponentTestingPreset(__filename), | ||
setupNodeEvents: (on, config) => { | ||
const b = ''; | ||
removePassedSpecs(on); | ||
}, | ||
}, | ||
}); | ||
/** | ||
* Delete videos for specs that do not contain failing or retried tests. | ||
* This function is to be used in the 'setupNodeEvents' configuration option as a replacement to | ||
* 'videoUploadOnPasses' which has been removed. | ||
* | ||
* https://docs.cypress.io/guides/guides/screenshots-and-videos#Delete-videos-for-specs-without-failing-or-retried-tests | ||
**/ | ||
function removePassedSpecs(on) { | ||
on('after:spec', (spec, results) => { | ||
if (results && results.vide) { | ||
const hasFailures = results.tests.some((t) => | ||
t.attempts.some((a) => a.state === 'failed') | ||
); | ||
if (!hasFailures) { | ||
fs.unlinkSync(results.video); | ||
} | ||
} | ||
}); | ||
} | ||
" | ||
`); | ||
}); | ||
it('should remove nodeVersion from config', async () => { | ||
setup(tree, { name: 'my-app-node-version' }); | ||
await updateToCypress13(tree); | ||
expect(tree.read('apps/my-app-node-version/cypress.config.ts', 'utf-8')) | ||
.toMatchInlineSnapshot(` | ||
"import fs from 'fs'; | ||
import { defineConfig } from 'cypress'; | ||
import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset'; | ||
import { nxComponentTestingPreset } from '@nx/react/plugins/component-testing'; | ||
export default defineConfig({ | ||
something: 'blah', | ||
// nodeVersion: 'system', | ||
// videoUploadOnPasses: false , | ||
e2e: { | ||
...nxE2EPreset(__filename), | ||
setupNodeEvents(on, config) { | ||
const a = ''; | ||
removePassedSpecs(on); | ||
}, | ||
}, | ||
component: { | ||
...nxComponentTestingPreset(__filename), | ||
setupNodeEvents: (on, config) => { | ||
const b = ''; | ||
removePassedSpecs(on); | ||
}, | ||
}, | ||
}); | ||
/** | ||
* Delete videos for specs that do not contain failing or retried tests. | ||
* This function is to be used in the 'setupNodeEvents' configuration option as a replacement to | ||
* 'videoUploadOnPasses' which has been removed. | ||
* | ||
* https://docs.cypress.io/guides/guides/screenshots-and-videos#Delete-videos-for-specs-without-failing-or-retried-tests | ||
**/ | ||
function removePassedSpecs(on) { | ||
on('after:spec', (spec, results) => { | ||
if (results && results.vide) { | ||
const hasFailures = results.tests.some((t) => | ||
t.attempts.some((a) => a.state === 'failed') | ||
); | ||
if (!hasFailures) { | ||
fs.unlinkSync(results.video); | ||
} | ||
} | ||
}); | ||
} | ||
" | ||
`); | ||
}); | ||
}); | ||
|
||
function setup(tree: Tree, options: { name: string }) { | ||
tree.write( | ||
`apps/${options.name}/cypress.config.ts`, | ||
` | ||
import { defineConfig} from 'cypress'; | ||
import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset'; | ||
import { nxComponentTestingPreset } from '@nx/react/plugins/component-testing'; | ||
export default defineConfig({ | ||
something: 'blah', | ||
nodeVersion: 'system', | ||
videoUploadOnPasses: false, | ||
e2e: { | ||
...nxE2EPreset(__filename), | ||
videoUploadOnPasses: false, | ||
nodeVersion: 'bundled', | ||
setupNodeEvents(on, config) { | ||
const a = ''; | ||
}, | ||
}, | ||
component: { | ||
...nxComponentTestingPreset(__filename), | ||
videoUploadOnPasses: false, | ||
nodeVersion: 'something', | ||
setupNodeEvents: (on, config) => { | ||
const b = ''; | ||
} | ||
}, | ||
}) | ||
` | ||
); | ||
tree.write( | ||
'package.json', | ||
JSON.stringify({ devDependencies: { cypress: '^12.16.0' } }) | ||
); | ||
addProjectConfiguration(tree, options.name, { | ||
root: `apps/${options.name}`, | ||
sourceRoot: `apps/${options.name}/src`, | ||
targets: { | ||
e2e: { | ||
executor: '@nx/cypress:cypress', | ||
options: { | ||
testingType: 'e2e', | ||
cypressConfig: `apps/${options.name}/cypress.config.ts`, | ||
devServerTarget: 'app:serve', | ||
}, | ||
}, | ||
'component-test': { | ||
executor: '@nx/cypress:cypress', | ||
options: { | ||
testingType: 'component', | ||
cypressConfig: `apps/${options.name}/ct-cypress.config.ts`, | ||
skipServe: true, | ||
devServerTarget: 'app:build', | ||
}, | ||
}, | ||
}, | ||
}); | ||
} |
Oops, something went wrong.