forked from elastic/eui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicon_apps.a11y.tsx
86 lines (81 loc) · 2.1 KB
/
icon_apps.a11y.tsx
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
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
/// <reference types="cypress" />
/// <reference types="cypress-real-events" />
/// <reference types="../../../cypress/support" />
import React from 'react';
import { EuiIcon } from './icon';
describe('EuiIcons', () => {
describe('Automated accessibility check for app icons', () => {
const AppIcons = [
'addDataApp',
'advancedSettingsApp',
'agentApp',
'apmApp',
'appSearchApp',
'auditbeatApp',
'canvasApp',
'casesApp',
'codeApp',
'consoleApp',
'crossClusterReplicationApp',
'dashboardApp',
'devToolsApp',
'discoverApp',
'emsApp',
'filebeatApp',
'fleetApp',
'gisApp',
'graphApp',
'grokApp',
'heartbeatApp',
'indexManagementApp',
'indexPatternApp',
'indexRollupApp',
'lensApp',
'logsApp',
'machineLearningApp',
'managementApp',
'metricbeatApp',
'metricsApp',
'monitoringApp',
'notebookApp',
'packetbeatApp',
'pipelineApp',
'recentlyViewedApp',
'reportingApp',
'savedObjectsApp',
'searchProfilerApp',
'securityAnalyticsApp',
'securityApp',
'spacesApp',
'sqlApp',
'timelionApp',
'upgradeAssistantApp',
'uptimeApp',
'usersRolesApp',
'visualizeApp',
'watchesApp',
'workplaceSearchApp',
];
const AppGrid = () => (
<div>
{AppIcons.map((glyph) => (
<EuiIcon className="eui-alignMiddle" type={glyph} />
))}
</div>
);
it('has zero violations on first render', () => {
cy.mount(<AppGrid />);
cy.get('div[data-cy-root]')
.find('svg', { timeout: 5000 })
.should('have.length', 49);
cy.checkAxe();
});
});
});