summaryrefslogtreecommitdiff
path: root/cypress_test/plugins/blacklists.js
blob: 3fc54ba6b427346778cc1c2cfffd89d46a031d90 (plain)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
var coreBlackLists = {
	'master': [
		['mobile/writer/table_properties_spec.js',
			[]
		],
		['mobile/writer/shape_properties_spec.js',
			[
				'Change size with keep ratio enabled.',
				'Change line color',
				'Change line style',
				'Change line width',
				'Change line transparency',
				'Arrow style items are hidden.'
			]
		],
		['mobile/writer/apply_paragraph_properties_spec.js',
			[
				'Apply default bulleting.',
				'Apply default numbering.',
				'Apply background color.'
			]
		],
		['mobile/writer/insert_object_spec.js',
			[
				'Insert default table.',
				'Insert custom table.'
			]
		],
		['mobile/writer/apply_font_spec.js',
			[
				'Insert default table.',
				'Insert custom table.'
			]
		],
		['mobile/calc/number_format_spec.js',
			[
				'Select percent format from list.',
				'Push percent button.',
				'Select currency format from list.',
				'Push currency button.',
				'Push number button.'
			]
		],
	],

	'cp-6-4': [
	],

	'cp-6-2': [
		['mobile/impress/apply_font_spec.js',
			[]
		],
		['mobile/impress/apply_paragraph_props_spec.js',
			[]
		],
	]
};

var nextcloudBlackList = [
	['mobile/writer/focus_spec.js', []],
	['mobile/calc/focus_spec.js', []],
	['mobile/impress/impress_focus_spec.js', []],
	['desktop/writer/focus_spec.js', []],
	['desktop/calc/focus_spec.js', []],
	['mobile/calc/hamburger_menu_spec.js',
		[
			'Print'
		]
	],
	['mobile/writer/hamburger_menu_spec.js',
		[
			'Print'
		]
	],
	['mobile/impress/hamburger_menu_spec.js',
		[
			'Print'
		]
	],
	['multiuser/calc/sheet_operations_user1_spec.js',
		[]
	],
	['multiuser/calc/sheet_operations_user2_spec.js',
		[]
	],
	['multiuser/impress/slide_operations_user1_spec.js',
		[]
	],
	['multiuser/impress/slide_operations_user2_spec.js',
		[]
	],
	['multiuser/writer/paragraph_prop_user1_spec.js',
		[]
	],
	['multiuser/writer/paragraph_prop_user2_spec.js',
		[]
	],
	['multiuser/writer/sidebar_visibility_user1_spec.js',
		[]
	],
	['multiuser/writer/sidebar_visibility_user2_spec.js',
		[]
	],
	['multiuser/writer/simultaneous_typing_user1_spec.js',
		[]
	],
	['multiuser/writer/simultaneous_typing_user2_spec.js',
		[]
	],
];

var phpProxyBlackList = [
	['mobile/calc/insertion_wizard_spec.js',
		[
			'Inset local image.'
		]
	],
	['mobile/writer/insert_object_spec.js',
		[
			'Insert local image.'
		]
	],
	['mobile/impress/insertion_wizard_spec.js',
		[
			'Insert local image.'
		]
	],
	['mobile/writer/table_properties_spec.js',
		[]
	],
	['desktop/calc/focus_spec.js',
		[]
	],
	['multiuser/calc/sheet_operations_user1_spec.js',
		[]
	],
	['multiuser/calc/sheet_operations_user2_spec.js',
		[]
	],
	['multiuser/impress/slide_operations_user1_spec.js',
		[]
	],
	['multiuser/impress/slide_operations_user2_spec.js',
		[]
	],
	['multiuser/writer/paragraph_prop_user1_spec.js',
		[]
	],
	['multiuser/writer/paragraph_prop_user2_spec.js',
		[]
	],
	['multiuser/writer/sidebar_visibility_user1_spec.js',
		[]
	],
	['multiuser/writer/sidebar_visibility_user2_spec.js',
		[]
	],
	['multiuser/writer/simultaneous_typing_user1_spec.js',
		[]
	],
	['multiuser/writer/simultaneous_typing_user2_spec.js',
		[]
	],
];

var nextcloudOnlyList = [
	['mobile/writer/nextcloud_spec.js', []],
];

module.exports.coreBlackLists = coreBlackLists;
module.exports.nextcloudBlackList = nextcloudBlackList;
module.exports.nextcloudOnlyList = nextcloudOnlyList;
module.exports.phpProxyBlackList = phpProxyBlackList;