forked from elastic/eui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicon_tokens.a11y.tsx
90 lines (85 loc) · 2.21 KB
/
icon_tokens.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
87
88
89
90
/*
* 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 token icons', () => {
const TokenIcons = [
'tokenAlias',
'tokenAnnotation',
'tokenArray',
'tokenBinary',
'tokenBoolean',
'tokenClass',
'tokenCompletionSuggester',
'tokenConstant',
'tokenDate',
'tokenDenseVector',
'tokenElement',
'tokenEnum',
'tokenEnumMember',
'tokenEvent',
'tokenException',
'tokenField',
'tokenFile',
'tokenFlattened',
'tokenFunction',
'tokenGeo',
'tokenHistogram',
'tokenInterface',
'tokenIP',
'tokenJoin',
'tokenKey',
'tokenKeyword',
'tokenMethod',
'tokenMetricCounter',
'tokenMetricGauge',
'tokenModule',
'tokenNamespace',
'tokenNested',
'tokenNull',
'tokenNumber',
'tokenObject',
'tokenOperator',
'tokenPackage',
'tokenParameter',
'tokenPercolator',
'tokenProperty',
'tokenRange',
'tokenRankFeature',
'tokenRankFeatures',
'tokenRepo',
'tokenSearchType',
'tokenShape',
'tokenString',
'tokenStruct',
'tokenSymbol',
'tokenTag',
'tokenText',
'tokenTokenCount',
'tokenVariable',
];
const TokenGrid = () => (
<div>
{TokenIcons.map((glyph) => (
<EuiIcon className="eui-alignMiddle" type={glyph} />
))}
</div>
);
it('has zero violations on first render', () => {
cy.mount(<TokenGrid />);
cy.get('div[data-cy-root]')
.find('svg', { timeout: 5000 })
.should('have.length', 53);
cy.checkAxe();
});
});
});