mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
16 lines
406 B
JavaScript
16 lines
406 B
JavaScript
import {
|
|
expectValidTranslationString
|
|
} from '../helpers/content.helper';
|
|
|
|
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);
|
|
});
|
|
});
|
|
|