We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 840b43f commit 612111aCopy full SHA for 612111a
test/configCases/plugins/source-map-dev-tool-plugin/index.js
@@ -4,3 +4,9 @@ it("should contain publicPath prefix in [url] and resolve relatively to fileCont
4
var source = fs.readFileSync(path.join(__dirname, "dist/public/test.js"), "utf-8");
5
source.should.containEql("//# sourceMappingURL=https://10.10.10.10/project/sourcemaps/test.js.map");
6
});
7
+
8
+it("should write sourcemap file relative fo fileContext", function() {
9
+ var fs = require("fs"),
10
+ path = require("path");
11
+ fs.existsSync(path.join(__dirname, "sourcemaps/test.js.map")).should.be.true();
12
+});
0 commit comments