feat(content): Watery Potions

also fixes some sprite issues
This commit is contained in:
Sabe Jones
2019-06-20 15:13:19 -05:00
parent 76773d27c6
commit fcfc44fd13
60 changed files with 43 additions and 30 deletions

View File

@@ -83,12 +83,12 @@ context('avatar.vue', () => {
expect(vm.paddingTop).to.equal('28px');
});
it('is 24.5px if user has a pet', () => {
it('is 24px if user has a pet', () => {
vm.member.items = {
currentPet: { name: 'Foo' },
};
expect(vm.paddingTop).to.equal('24.5px');
expect(vm.paddingTop).to.equal('24px');
});
it('is 0px if user has a mount', () => {
@@ -297,4 +297,4 @@ context('avatar.vue', () => {
});
});
});
});
});