webpack/test/configCases/source-map/sources-array-production/index.js

9 lines
278 B
JavaScript
Raw Normal View History

2014-08-04 03:13:54 +08:00
it("should include test.js in SourceMap", function() {
var fs = require("fs");
var source = fs.readFileSync(__filename + ".map", "utf-8");
var map = JSON.parse(source);
expect(map.sources).toContain("webpack:///./test.js");
2014-08-04 03:13:54 +08:00
});
if (Math.random() < 0) require("./test.js");