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); }); }); });