Commit ee26b693a774b5cdbaad21cb7603f155697faca7
1 parent
ab5cf704
Exists in
master
and in
6 other branches
Test: a11y links are uppercase
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
e2e/pages/layout.js
| ... | ... | @@ -20,13 +20,13 @@ module.exports = function(){ |
| 20 | 20 | }); |
| 21 | 21 | |
| 22 | 22 | it('should have a accessibility anchor', function() { |
| 23 | - expect(page.actionAccessibility.getText()).toEqual('Acessibilidade'); | |
| 23 | + expect(page.actionAccessibility.getText()).toEqual('ACESSIBILIDADE'); | |
| 24 | 24 | }); |
| 25 | 25 | it('should have a adjust contrast anchor', function() { |
| 26 | - expect(page.actionContrast.getText()).toEqual('Alto Contraste'); | |
| 26 | + expect(page.actionContrast.getText()).toEqual('ALTO CONTRASTE'); | |
| 27 | 27 | }); |
| 28 | 28 | it('should have a sitemap anchor', function() { |
| 29 | - expect(page.actionSitemap.getText()).toEqual('Mapa do Site'); | |
| 29 | + expect(page.actionSitemap.getText()).toEqual('MAPA DO SITE'); | |
| 30 | 30 | }); |
| 31 | 31 | }); |
| 32 | 32 | ... | ... |