mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
13 lines
255 B
JavaScript
13 lines
255 B
JavaScript
import { userGems } from 'client/store/getters';
|
|
|
|
describe('userGems getter', () => {
|
|
it('returns the user\'s gems', () => {
|
|
expect(userGems({
|
|
state: {
|
|
user: {
|
|
balance: 4.5,
|
|
},
|
|
},
|
|
})).to.equal(18);
|
|
});
|
|
}); |