cp-translations
Version:
Translations for the CoderDojo Community Platform
16 lines (14 loc) • 438 B
JavaScript
const renderTemplate = require('./helpers/renderTemplate');
const supportedLocales = ['en_US'];
describe('polls-notification', () => {
supportedLocales.forEach((locale) => {
it(`should render ${locale}`, async () => {
await renderTemplate('polls-notification', locale, {
question: 'Some Question',
dojoName: 'Some Dojo',
pollLink: 'http://example.com',
year: 2017,
});
});
});
});