forked from elastic/eui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icon_elastic.a11y.tsx
56 lines (51 loc) · 1.51 KB
/
icon_elastic.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
/*
* 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 Elastic logos', () => {
const ElasticLogos = [
'logoElastic',
'logoElasticStack',
'logoElasticsearch',
'logoAppSearch',
'logoBeats',
'logoBusinessAnalytics',
'logoCloud',
'logoCloudEnterprise',
'logoEnterpriseSearch',
'logoKibana',
'logoLogging',
'logoLogstash',
'logoMaps',
'logoMetrics',
'logoObservability',
'logoSecurity',
'logoSiteSearch',
'logoUptime',
'logoWorkplaceSearch',
];
const ElasticGrid = () => (
<div>
{ElasticLogos.map((glyph) => (
<EuiIcon className="eui-alignMiddle" type={glyph} />
))}
</div>
);
it('has zero violations on first render', () => {
cy.mount(<ElasticGrid />);
cy.get('div[data-cy-root]')
.find('svg', { timeout: 5000 })
.should('have.length', 19);
cy.checkAxe();
});
});
});