2020-09-10 11:26:00 -05:00
|
|
|
var coreBlackLists = {
|
2020-06-05 09:42:23 -05:00
|
|
|
'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.'
|
|
|
|
]
|
|
|
|
],
|
2020-06-08 11:23:32 -05:00
|
|
|
],
|
|
|
|
|
|
|
|
'cp-6-4': [
|
2020-06-10 08:41:18 -05:00
|
|
|
],
|
|
|
|
|
|
|
|
'cp-6-2': [
|
|
|
|
['mobile/impress/apply_font_spec.js',
|
2020-06-08 11:23:32 -05:00
|
|
|
[]
|
|
|
|
],
|
2020-06-10 08:41:18 -05:00
|
|
|
['mobile/impress/apply_paragraph_props_spec.js',
|
2020-06-08 11:23:32 -05:00
|
|
|
[]
|
|
|
|
],
|
2020-06-05 09:42:23 -05:00
|
|
|
]
|
|
|
|
};
|
|
|
|
|
2020-09-10 11:26:00 -05:00
|
|
|
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'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
2020-09-16 07:23:54 -05:00
|
|
|
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.'
|
|
|
|
]
|
|
|
|
],
|
2020-09-16 09:54:00 -05:00
|
|
|
['mobile/writer/table_properties_spec.js',
|
|
|
|
[]
|
|
|
|
],
|
2020-09-16 07:23:54 -05:00
|
|
|
];
|
|
|
|
|
2020-09-10 11:26:00 -05:00
|
|
|
module.exports.coreBlackLists = coreBlackLists;
|
|
|
|
module.exports.nextcloudBlackList = nextcloudBlackList;
|
2020-09-16 07:23:54 -05:00
|
|
|
module.exports.phpProxyBlackList = phpProxyBlackList;
|