diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/letter-avatars.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/letter-avatars.js b/test/letter-avatars.js new file mode 100644 index 00000000..4948dec0 --- /dev/null +++ b/test/letter-avatars.js @@ -0,0 +1,11 @@ +'use strict' + +const assert = require('assert'); +const avatars = require('../lib/letter-avatars') + +describe('generateAvatarURL()', function() { + it('should return correct urls', function() { + assert.equal(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', true), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=400'); + assert.equal(avatars.generateAvatarURL('Daan Sprenkels', 'hello@dsprenkels.com', false), 'https://www.gravatar.com/avatar/d41b5f3508cc3f31865566a47dd0336b?s=96'); + }); +}); |