habitica-self-host/test/content/mysterySets.test.js

15 lines
350 B
JavaScript
Raw Normal View History

import {each} from 'lodash';
import {
expectValidTranslationString
} from '../helpers/content.helper';
import mysterySets from '../../common/script/content/mystery-sets';
describe('Mystery Sets', () => {
it('has a valid text string', () => {
each(mysterySets, (set, key) => {
expectValidTranslationString(set.text);
});
});
});