From 3382821641ddfaa13135156d2d6d3f5008169153 Mon Sep 17 00:00:00 2001 From: Anand Chowdhary Date: Thu, 28 Nov 2019 05:13:30 -0800 Subject: [PATCH] fix: a11y issue by removing unnecessary alternate text (#217) (#218) * fix(a11y): Remove unnecessary alternate text * fix: Remove alternate text from test images --- src/generate/__tests__/format-contributor.js | 11 ++++++----- src/generate/format-contributor.js | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/generate/__tests__/format-contributor.js b/src/generate/__tests__/format-contributor.js index 8ed7564..a2fc80e 100644 --- a/src/generate/__tests__/format-contributor.js +++ b/src/generate/__tests__/format-contributor.js @@ -20,7 +20,7 @@ test('format a simple contributor', () => { const {options} = fixtures() const expected = - 'Kent C. Dodds
Kent C. Dodds

👀' + '
Kent C. Dodds

👀' expect(formatContributor(options, contributor)).toBe(expected) }) @@ -30,7 +30,7 @@ test('format contributor with complex contribution types', () => { const {options} = fixtures() const expected = - 'Kent C. Dodds
Kent C. Dodds

📖 👀 💬' + '
Kent C. Dodds

📖 👀 💬' expect(formatContributor(options, contributor)).toBe(expected) }) @@ -53,7 +53,8 @@ test('default image size to 100', () => { delete options.imageSize const expected = - 'Kent C. Dodds
Kent C. Dodds

👀' + '
Kent C. Dodds

👀' + expect(formatContributor(options, contributor)).toBe(expected) }) @@ -63,7 +64,7 @@ test('format contributor with pipes in their name', () => { const {options} = fixtures() const expected = - 'Who | Needs | Pipes?
Who | Needs | Pipes?

📖' + '
Who | Needs | Pipes?

📖' expect(formatContributor(options, contributor)).toBe(expected) }) @@ -73,7 +74,7 @@ test('format contributor with no github account', () => { const {options} = fixtures() const expected = - 'No Github Account
No Github Account
🌍' + '
No Github Account
🌍' expect(formatContributor(options, contributor)).toBe(expected) }) diff --git a/src/generate/format-contributor.js b/src/generate/format-contributor.js index 67b55ee..63716f2 100644 --- a/src/generate/format-contributor.js +++ b/src/generate/format-contributor.js @@ -2,7 +2,7 @@ const _ = require('lodash/fp') const formatContributionType = require('./format-contribution-type') const avatarTemplate = _.template( - '<%= name %>', + '', ) const avatarBlockTemplate = _.template( '<%= avatar %>
<%= name %>
',