1
0

cypress.config.ts 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /**
  2. * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: AGPL-3.0-or-later
  4. */
  5. import type { Configuration } from 'webpack'
  6. import {
  7. applyChangesToNextcloud,
  8. configureNextcloud,
  9. startNextcloud,
  10. stopNextcloud,
  11. waitOnNextcloud,
  12. } from './cypress/dockerNode'
  13. import { defineConfig } from 'cypress'
  14. import cypressSplit from 'cypress-split'
  15. import { removeDirectory } from 'cypress-delete-downloads-folder'
  16. import webpackPreprocessor from '@cypress/webpack-preprocessor'
  17. import webpackConfig from './webpack.config.js'
  18. export default defineConfig({
  19. projectId: '37xpdh',
  20. // 16/9 screen ratio
  21. viewportWidth: 1280,
  22. viewportHeight: 720,
  23. // Tries again 2 more times on failure
  24. retries: {
  25. runMode: 2,
  26. // do not retry in `cypress open`
  27. openMode: 0,
  28. },
  29. // Needed to trigger `after:run` events with cypress open
  30. experimentalInteractiveRunEvents: true,
  31. // faster video processing
  32. video: !process.env.CI,
  33. videoCompression: false,
  34. // Prevent elements to be scrolled under a top bar during actions (click, clear, type, etc). Default is 'top'.
  35. // https://github.com/cypress-io/cypress/issues/871
  36. scrollBehavior: 'center',
  37. // Visual regression testing
  38. env: {
  39. failSilently: false,
  40. type: 'actual',
  41. },
  42. screenshotsFolder: 'cypress/snapshots/actual',
  43. trashAssetsBeforeRuns: true,
  44. e2e: {
  45. // Disable session isolation
  46. testIsolation: false,
  47. requestTimeout: 30000,
  48. // We've imported your old cypress plugins here.
  49. // You may want to clean this up later by importing these.
  50. async setupNodeEvents(on, config) {
  51. cypressSplit(on, config)
  52. on('file:preprocessor', webpackPreprocessor({ webpackOptions: webpackConfig as Configuration }))
  53. on('task', { removeDirectory })
  54. // Disable spell checking to prevent rendering differences
  55. on('before:browser:launch', (browser, launchOptions) => {
  56. if (browser.family === 'chromium' && browser.name !== 'electron') {
  57. launchOptions.preferences.default['browser.enable_spellchecking'] = false
  58. return launchOptions
  59. }
  60. if (browser.family === 'firefox') {
  61. launchOptions.preferences['layout.spellcheckDefault'] = 0
  62. return launchOptions
  63. }
  64. if (browser.name === 'electron') {
  65. launchOptions.preferences.spellcheck = false
  66. return launchOptions
  67. }
  68. })
  69. // Remove container after run
  70. on('after:run', () => {
  71. if (!process.env.CI) {
  72. stopNextcloud()
  73. }
  74. })
  75. // Before the browser launches
  76. // starting Nextcloud testing container
  77. const ip = await startNextcloud(process.env.BRANCH)
  78. // Setting container's IP as base Url
  79. config.baseUrl = `http://${ip}/index.php`
  80. await waitOnNextcloud(ip)
  81. await configureNextcloud()
  82. if (!process.env.CI) {
  83. await applyChangesToNextcloud()
  84. }
  85. // IMPORTANT: return the config otherwise cypress-split will not work
  86. return config
  87. },
  88. },
  89. component: {
  90. devServer: {
  91. framework: 'vue',
  92. bundler: 'webpack',
  93. webpackConfig: async () => {
  94. process.env.npm_package_name = 'NcCypress'
  95. process.env.npm_package_version = '1.0.0'
  96. process.env.NODE_ENV = 'development'
  97. /**
  98. * Needed for cypress stubbing
  99. *
  100. * @see https://github.com/sinonjs/sinon/issues/1121
  101. * @see https://github.com/cypress-io/cypress/issues/18662
  102. */
  103. const babel = require('./babel.config.js')
  104. babel.plugins.push([
  105. '@babel/plugin-transform-modules-commonjs',
  106. {
  107. loose: true,
  108. },
  109. ])
  110. const config = webpackConfig
  111. config.module.rules.push({
  112. test: /\.svg$/,
  113. type: 'asset/source',
  114. })
  115. return config
  116. },
  117. },
  118. },
  119. })