mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
12 lines
329 B
JavaScript
12 lines
329 B
JavaScript
import healthPotion from '../../common/script/src/content/health-potion';
|
|
|
|
describe('Health Potion Locales', () => {
|
|
it('has a valid text attribute', () => {
|
|
expectValidTranslationString(healthPotion.text);
|
|
});
|
|
|
|
it('has a valid notes attribute', () => {
|
|
expectValidTranslationString(healthPotion.notes);
|
|
});
|
|
});
|
|
|