mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
14 lines
354 B
JavaScript
14 lines
354 B
JavaScript
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', () => {
|
|
each(mysterySets, set => {
|
|
expectValidTranslationString(set.text);
|
|
});
|
|
});
|
|
});
|