test: fix i18n tests

This commit is contained in:
Julian Lam
2022-06-17 14:26:12 -04:00
parent 06074e8c33
commit 05c30677f5

View File

@@ -41,6 +41,10 @@ describe('i18n', () => {
it('should only contain valid JSON files', async () => {
try {
fullPaths.forEach((fullPath) => {
if (fullPath.endsWith('_DO_NOT_EDIT_FILES_HERE.md')) {
return;
}
const hash = require(fullPath);
sourceStrings.set(fullPath.replace(sourcePath, ''), hash);
});
@@ -84,6 +88,10 @@ describe('i18n', () => {
it('should contain only valid JSON files', () => {
try {
fullPaths.forEach((fullPath) => {
if (fullPath.endsWith('_DO_NOT_EDIT_FILES_HERE.md')) {
return;
}
const hash = require(fullPath);
strings.set(fullPath.replace(translationPath, ''), hash);
});