mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
15 lines
350 B
JavaScript
15 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);
|
|
});
|
|
});
|
|
});
|