forked from wikimedia/pixel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroupConfig.js
More file actions
43 lines (43 loc) · 964 Bytes
/
Copy pathgroupConfig.js
File metadata and controls
43 lines (43 loc) · 964 Bytes
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
/**
* Each group has an assigned priority based on how regular they need to run.
* For suites with lots of test where code seldom changes priority 2 and 3 are
* preferred. Feel free to modify these as development priorities shift.
* Priority 1 - run every hour
* Priority 2 - run every 12 hours
* Priority 3 - run every 24 hours
*/
module.exports = {
login: {
name: 'Login and sign up pages',
priority: 3,
config: 'configLogin.js'
},
'web-maintained': {
name: 'Extensions and skins maintained by web team',
priority: 3,
config: 'configWebMaintained.js'
},
echo: {
name: 'Echo badges',
priority: 3,
config: 'configEcho.js'
},
desktop: {
name: 'Vector 2022 skin',
priority: 1,
config: 'configDesktop.js'
},
mobile: {
name: 'Minerva and MobileFrontend',
priority: 1,
config: 'configMobile.js'
},
codex: {
priority: 1,
config: 'configCodex.js'
},
wikilambda: {
priority: 2,
config: 'configWikiLambda.js'
}
};