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

15 lines
354 B
JavaScript
Raw Permalink Normal View History

2019-10-08 18:45:38 +00:00
import { each } from 'lodash';
import {
expectValidTranslationString,
} from '../helpers/content.helper';
import mysterySets from '../../website/common/script/content/mystery-sets';
describe('Mystery Sets', () => {
it('has a valid text string', () => {
2019-10-08 18:45:38 +00:00
each(mysterySets, set => {
expectValidTranslationString(set.text);
});
});
});