mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-21 21:34:15 +00:00
38 lines
992 B
JavaScript
38 lines
992 B
JavaScript
import { each } from 'lodash';
|
|
import {
|
|
expectValidTranslationString,
|
|
} from '../helpers/content.helper';
|
|
|
|
import {questions, stillNeedHelp} from '../../common/script/content/faq';
|
|
|
|
describe('FAQ Locales', () => {
|
|
describe('Questions', () => {
|
|
it('has a valid questions', () => {
|
|
each(questions, (question, key) => {
|
|
expectValidTranslationString(question.question);
|
|
});
|
|
});
|
|
|
|
it('has a valid ios answers', () => {
|
|
each(questions, (question, key) => {
|
|
expectValidTranslationString(question.ios);
|
|
});
|
|
});
|
|
|
|
it('has a valid web answers', () => {
|
|
each(questions, (question, key) => {
|
|
expectValidTranslationString(question.web);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('Still Need Help Message', () => {
|
|
it('has a valid ios message', () => {
|
|
expectValidTranslationString(stillNeedHelp.ios);
|
|
});
|
|
|
|
it('has a valid web message', () => {
|
|
expectValidTranslationString(stillNeedHelp.web);
|
|
});
|
|
});
|
|
});
|