mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
13 lines
329 B
JavaScript
13 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);
|
|
});
|
|
});
|
|
|