mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-06 10:20:09 +02:00
30 lines
1 KiB
JavaScript
30 lines
1 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
const {extractThemeCodeMessages} = require('./update-code-translations');
|
|
const path = require('path');
|
|
const fs = require('fs-extra');
|
|
const {mapValues, pickBy} = require('lodash');
|
|
|
|
describe('update-code-translations', () => {
|
|
test(`to have base.json contain all the translations extracted from the theme. Please run "yarn workspace @docusaurus/theme-classic update-code-translations" to keep base.json up-to-date.`, async () => {
|
|
const baseMessages = pickBy(
|
|
JSON.parse(
|
|
await fs.readFile(
|
|
path.join(__dirname, 'codeTranslations', 'base.json'),
|
|
),
|
|
),
|
|
(_, key) => !key.endsWith('___DESCRIPTION'),
|
|
);
|
|
|
|
const codeMessages = mapValues(
|
|
await extractThemeCodeMessages(),
|
|
(translation) => translation.message,
|
|
);
|
|
expect(codeMessages).toEqual(baseMessages);
|
|
});
|
|
});
|