mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
14 lines
350 B
JavaScript
14 lines
350 B
JavaScript
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);
|
|
});
|
|
});
|
|
});
|