2019-01-21 16:17:36 +00:00
|
|
|
/* eslint-env node, mocha */
|
|
|
|
|
2018-12-22 13:10:40 +00:00
|
|
|
'use strict'
|
|
|
|
|
2019-01-21 16:17:36 +00:00
|
|
|
const assert = require('assert')
|
2018-12-22 13:10:40 +00:00
|
|
|
const avatars = require('../lib/letter-avatars')
|
|
|
|
|
2019-01-21 16:17:36 +00:00
|
|
|
describe('generateAvatarURL()', function () {
|
|
|
|
it('should return correct urls', function () {
|
|
|
|
assert.strictEqual(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', true), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=400')
|
|
|
|
assert.strictEqual(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', false), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=96')
|
|
|
|
})
|
|
|
|
})
|