-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js
More file actions
43 lines (40 loc) · 1.04 KB
/
Copy pathconfig.js
File metadata and controls
43 lines (40 loc) · 1.04 KB
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
const isDevelopment =
process.env.NODE_ENV === 'development' ||
( typeof window !== 'undefined' && window.location.hostname === 'localhost' );
const config = {
permanent: [
'atomic',
'vip',
'gutenberg',
'jetpack-production',
'jetpack-social-plugin',
'jetpack-boost-production',
'jetpack-search-plugin',
'jetpack-videopress-plugin',
'jetpack-protect-plugin',
'ctrf',
'junit',
],
trunkRuns: [
'master',
'trunk',
'atomic',
'vip',
'gutenberg',
'jetpack-production',
'jetpack-social-plugin',
'jetpack-boost-production',
'jetpack-search-plugin',
'jetpack-videopress-plugin',
'jetpack-protect-plugin',
],
ignore: [ 'static', 'e2e', 'data' ],
dataSourceURL: isDevelopment ? '.' : 'https://a8c-jetpack-e2e-reports.s3.amazonaws.com',
reportDeepUrl: 'http://a8c-jetpack-e2e-reports.s3-website-us-east-1.amazonaws.com/reports',
};
// ES Module export for browser/React
export default config;
// CommonJS export for Node.js scripts
if ( typeof module !== 'undefined' && module.exports ) {
module.exports = config;
}