123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- import {
- applyChangesToNextcloud,
- configureNextcloud,
- startNextcloud,
- stopNextcloud,
- waitOnNextcloud,
- } from './cypress/dockerNode'
- import { defineConfig } from 'cypress'
- import browserify from '@cypress/browserify-preprocessor'
- export default defineConfig({
- projectId: '37xpdh',
- // 16/9 screen ratio
- viewportWidth: 1280,
- viewportHeight: 720,
- // Tries again 2 more times on failure
- retries: {
- runMode: 2,
- // do not retry in `cypress open`
- openMode: 0,
- },
- // Needed to trigger `after:run` events with cypress open
- experimentalInteractiveRunEvents: true,
- // faster video processing
- videoCompression: false,
- // Visual regression testing
- env: {
- failSilently: false,
- type: 'actual',
- },
- screenshotsFolder: 'cypress/snapshots/actual',
- trashAssetsBeforeRuns: true,
- e2e: {
- // Disable session isolation
- testIsolation: false,
- // We've imported your old cypress plugins here.
- // You may want to clean this up later by importing these.
- async setupNodeEvents(on, config) {
- // Fix browserslist extend https://github.com/cypress-io/cypress/issues/2983#issuecomment-570616682
- on('file:preprocessor', browserify({ typescript: require.resolve('typescript') }))
- // Disable spell checking to prevent rendering differences
- on('before:browser:launch', (browser, launchOptions) => {
- if (browser.family === 'chromium' && browser.name !== 'electron') {
- launchOptions.preferences.default['browser.enable_spellchecking'] = false
- return launchOptions
- }
- if (browser.family === 'firefox') {
- launchOptions.preferences['layout.spellcheckDefault'] = 0
- return launchOptions
- }
- if (browser.name === 'electron') {
- launchOptions.preferences.spellcheck = false
- return launchOptions
- }
- })
- // Remove container after run
- on('after:run', () => {
- if (!process.env.CI) {
- stopNextcloud()
- }
- })
- // Before the browser launches
- // starting Nextcloud testing container
- return startNextcloud(process.env.BRANCH)
- .then((ip) => {
- // Setting container's IP as base Url
- config.baseUrl = `http://${ip}/index.php`
- return ip
- })
- .then(waitOnNextcloud)
- .then(configureNextcloud)
- .then(applyChangesToNextcloud)
- .then(() => {
- return config
- })
- },
- },
- component: {
- devServer: {
- framework: 'vue',
- bundler: 'webpack',
- webpackConfig: async () => {
- process.env.npm_package_name = 'NcCypress'
- process.env.npm_package_version = '1.0.0'
- process.env.NODE_ENV = 'development'
- /**
- * Needed for cypress stubbing
- *
- * @see https://github.com/sinonjs/sinon/issues/1121
- * @see https://github.com/cypress-io/cypress/issues/18662
- */
- const babel = require('./babel.config.js')
- babel.plugins.push([
- '@babel/plugin-transform-modules-commonjs',
- {
- loose: true,
- },
- ])
- const config = require('@nextcloud/webpack-vue-config')
- config.module.rules.push({
- test: /\.svg$/,
- type: 'asset/source',
- })
- return config
- },
- },
- },
- })
|