Commit ee26b693a774b5cdbaad21cb7603f155697faca7

Authored by Leonardo Merlin
1 parent ab5cf704

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,13 +20,13 @@ module.exports = function(){
20 }); 20 });
21 21
22 it('should have a accessibility anchor', function() { 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 it('should have a adjust contrast anchor', function() { 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 it('should have a sitemap anchor', function() { 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