Skip to content
Snippets Groups Projects

Consolidate user avatar Vue logic

Merged username-removed-408230 requested to merge user-avatar-vue-ce into master
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -22,8 +22,8 @@ describe('User Avatar Svg Component', function () {
});
it('should have <svg> as a child element', function () {
const avatarSvgElement = this.userAvatarSvg.$el.innerHTML;
expect(avatarSvgElement).toContain('<path');
expect(this.userAvatarSvg.$el.tagName).toEqual('svg')
expect(this.userAvatarSvg.$el.innerHTML).toContain('<path');
});
it('should return neccessary props as defined', function () {
Loading