82f2b76e25
We now use webpack instead of SystemJS, effectively bundling modules into one file (plus commons chunks) for every entry point. This results in a much smaller extension size (almost half). Furthermore we use yarn/npm even for extension run-time dependencies. This relieves us from manually vendoring and building dependencies. It's also easier to understand for new developers familiar with node.
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
var tap = require("tap")
|
|
var normalize = require("../lib/normalize")
|
|
var path = require("path")
|
|
var fs = require("fs")
|
|
var _ = require("underscore")
|
|
var async = require("async")
|
|
|
|
var data, clonedData
|
|
var warn
|
|
|
|
tap.test("consistent normalization", function(t) {
|
|
path.resolve(__dirname, "./fixtures/read-package-json.json")
|
|
fs.readdir (__dirname + "/fixtures", function (err, entries) {
|
|
// entries = ['coffee-script.json'] // uncomment to limit to a specific file
|
|
verifyConsistency = function(entryName, next) {
|
|
warn = function(msg) {
|
|
// t.equal("",msg) // uncomment to have some kind of logging of warnings
|
|
}
|
|
filename = __dirname + "/fixtures/" + entryName
|
|
fs.readFile(filename, function(err, contents) {
|
|
if (err) return next(err)
|
|
data = JSON.parse(contents.toString())
|
|
normalize(data, warn)
|
|
clonedData = _.clone(data)
|
|
normalize(data, warn)
|
|
t.deepEqual(clonedData, data,
|
|
"Normalization of " + entryName + " is consistent.")
|
|
next(null)
|
|
}) // fs.readFile
|
|
} // verifyConsistency
|
|
async.forEach(entries, verifyConsistency, function(err) {
|
|
if (err) throw err
|
|
t.end()
|
|
})
|
|
}) // fs.readdir
|
|
}) // tap.test
|