diff --git a/src/generate/__tests__/format-contributor.js b/src/generate/__tests__/format-contributor.js index a2fc80e..013318a 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

👀' 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

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

👀' - + '
Kent C. Dodds

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

📖' + '
Who | Needs | Pipes?

📖' expect(formatContributor(options, contributor)).toBe(expected) }) @@ -74,7 +73,7 @@ test('format contributor with no github account', () => { const {options} = fixtures() const expected = - '
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 63716f2..048d63d 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( - '', + '', ) const avatarBlockTemplate = _.template( '<%= avatar %>
<%= name %>
',