This repository was archived by the owner on Aug 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 605
Expand file tree
/
Copy pathparallel-sets.coffee
More file actions
90 lines (75 loc) · 2.12 KB
/
parallel-sets.coffee
File metadata and controls
90 lines (75 loc) · 2.12 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
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
# This file designates test suites to test run sets to be executed in
# parallel.
#
# Data structure is an array of arrays. An inner array defines a
# parallel set.
#
# Order of inner array is irrelevant because each set will be started
# at the very same time if a host test server is reserved per set.
#
# Keep total duration of parallel sets close to each other. This is
# the only thing to consider while adding a test suite to a set or
# moving a test suite from one set to another.
#
# Total test run will take long as the longest set. If a set is
# taking longer than set goal then a new set can be added to list.
#
# Amount of test suites added to a set is not an issue as long as
# duration of that set is not taking so long than others.
#
# Test suites in a set will be executed consecutively.
module.exports = [
[
{ name: 'teams teams' }
{ name: 'dashboard myaccount' }
{ name: 'dashboard stacks' }
{ name: 'dashboard virtualmachines' }
{ name: 'dashboard myteam' }
{ name: 'dashboard credentials' }
{ name: 'dashboard utilities' }
{ name: 'dashboard onboarding' }
{ name: 'dashboard sidebar' }
# { name: 'dashboard teambilling' }
]
[
{ name: 'teams teams' }
# { name: 'unittests' }
]
[
{ name: 'ide file' }
{ name: 'ide folder' }
]
[
{ name: 'ide layout' }
]
[
{ name: 'ide search' }
{ name: 'ide general' }
]
[
{ name: 'ide terminal' }
{ name: 'ide settings' }
]
# [
# { name: 'collaboration collaborationsingle' }
# { name: 'collaboration collaborationpermission', NIGHTWATCH_OPTIONS: '--env host,participant' }
# ]
# [
# { name: 'collaboration start', NIGHTWATCH_OPTIONS: '--env host,participant' }
# ]
# [
# { name: 'collaboration collaborationsession', NIGHTWATCH_OPTIONS: '--env host,participant' }
# ]
# [
# { name: 'collaboration collaborationfile', NIGHTWATCH_OPTIONS: '--env host,participant' }
# ]
# [
# { name: 'vmsharing vmsharing', NIGHTWATCH_OPTIONS: '--env host,participant' }
# ]
# [
# { name: 'environments vm' }
# ]
# [
# { name: 'environments domain' }
# ]
]