forked from bluehost/bluehost-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.config.js
93 lines (87 loc) · 2.96 KB
/
cypress.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
const { defineConfig } = require('cypress')
const cypressReplay = require("@replayio/cypress")
const { phpVersion, core } = require('./.wp-env.json')
const wpVersion = /[^/]*$/.exec(core)[0]
module.exports = defineConfig({
projectId: "h78f39",
env: {
wpUsername: 'admin',
wpPassword: 'password',
wpVersion,
phpVersion,
pluginId: 'bluehost',
appId: 'wppbh',
},
downloadsFolder: 'tests/cypress/downloads',
fixturesFolder: 'tests/cypress/fixtures',
screenshotsFolder: 'tests/cypress/screenshots',
video: true,
videosFolder: 'tests/cypress/videos',
videoUploadOnPasses: false,
chromeWebSecurity: false,
viewportWidth: 1024,
viewportHeight: 768,
blockHosts: [
'*doubleclick.net',
'*jnn-pa.googleapis.com',
'*youtube.com',
],
e2e: {
setupNodeEvents(on, config) {
const semver = require('semver');
// Setup Replay
cypressReplay.default(on, config);
// Ensure that the base URL is always properly set.
if (config.env && config.env.baseUrl) {
config.baseUrl = config.env.baseUrl;
}
// Ensure that we have a semantically correct WordPress version number for comparisons.
if (config.env.wpVersion) {
if (config.env.wpVersion.split('.').length !== 3) {
config.env.wpSemverVersion = `${config.env.wpVersion}.0`;
} else {
config.env.wpSemverVersion = config.env.wpVersion;
}
}
// Exclude onboarding tests for WordPress lower than WordPress 6.2.0
if (semver.satisfies(config.env.wpSemverVersion, '<6.2.0')) {
config.excludeSpecPattern = config.excludeSpecPattern.concat(
[
"vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/**"
]
);
}
// Ensure that we have a semantically correct PHP version number for comparisons.
if (config.env.phpVersion) {
if (config.env.phpVersion.split('.').length !== 3) {
config.env.phpSemverVersion = `${config.env.phpVersion}.0`;
} else {
config.env.phpSemverVersion = config.env.phpVersion;
}
}
// Exclude onboarding/ecommerce tests for PHP lower than 7.3 (7.1 and 7.2)
if (semver.satisfies(config.env.phpSemverVersion, '<7.3.0')) {
config.excludeSpecPattern = config.excludeSpecPattern.concat(
[
"vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/3-ecommerce-onboarding-flow/**",
"vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/2-general-onboarding-flow/top-priority.cy.js"
]
);
}
return config;
},
baseUrl: 'http://localhost:8882',
specPattern: [
"tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}",
"vendor/newfold-labs/**/tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}",
],
supportFile: 'tests/cypress/support/index.js',
testIsolation: false,
excludeSpecPattern: [
"vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/4-design-steps/**",
"vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/wp-module-support/"
]
},
retries: 1,
experimentalMemoryManagement: true,
})