Files
habitica/test/content/health-potion.js
2015-10-03 10:48:42 -05:00

17 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);
});
});