mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
fix test lint
This commit is contained in:
@@ -5,24 +5,24 @@ import {
|
||||
|
||||
import faq from '../../website/common/script/content/faq';
|
||||
|
||||
const {questions, stillNeedHelp} = faq;
|
||||
const { questions, stillNeedHelp } = faq;
|
||||
|
||||
describe('FAQ Locales', () => {
|
||||
describe('Questions', () => {
|
||||
it('has a valid questions', () => {
|
||||
each(questions, (question) => {
|
||||
each(questions, question => {
|
||||
expectValidTranslationString(question.question);
|
||||
});
|
||||
});
|
||||
|
||||
it('has a valid ios answers', () => {
|
||||
each(questions, (question) => {
|
||||
each(questions, question => {
|
||||
expectValidTranslationString(question.ios);
|
||||
});
|
||||
});
|
||||
|
||||
it('has a valid web answers', () => {
|
||||
each(questions, (question) => {
|
||||
each(questions, question => {
|
||||
expectValidTranslationString(question.web);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user