mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
ceec694b2a
This reverts commit 214430b0c4
.
16 lines
581 B
JavaScript
16 lines
581 B
JavaScript
var fs = require('fs');
|
|
var path = require('path');
|
|
var tap = require('tap');
|
|
|
|
var buildLocales = require('../../bin/lib/locale-compare');
|
|
|
|
tap.test('buildLocalesFile', function (t) {
|
|
var actualMd5map = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../fixtures/test_es_md5map.json'), 'utf8'));
|
|
var templates = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../fixtures/build_locales.json'), 'utf8'));
|
|
var testMd5map = buildLocales.getMD5Map(templates);
|
|
|
|
for (var key in actualMd5map) {
|
|
t.ok(testMd5map[key] !== undefined);
|
|
}
|
|
t.end();
|
|
});
|