feat(client): Add news translation (#40577)

This commit is contained in:
Nicholas Carrigan (he/him)
2020-12-29 00:36:39 -08:00
committed by Mrugesh Mohapatra
parent 1e4c5fd6f0
commit 0de8dcdade
10 changed files with 392 additions and 280 deletions

View File

@@ -7,6 +7,7 @@ import {
langDisplayNames,
langCodes
} from './allLangs';
import { trendingSchema } from './trending-schema';
const fs = require('fs');
const { expectToMatchSchema, setup } = require('jest-json-schema-extended');
@@ -21,6 +22,10 @@ const filesThatShouldExist = [
{
name: 'motivation.json',
schema: motivationSchema
},
{
name: 'trending.json',
schema: trendingSchema
}
];