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 71e5129 commit 4fda52aCopy full SHA for 4fda52a
test/browsertest/lib/empty.js
test/browsertest/lib/index.web.js
@@ -290,6 +290,18 @@ describe("main", function() {
290
});
291
292
describe("query", function() {
293
+ it("should make different modules for query", function() {
294
+ var a = require("./empty");
295
+ var b = require("./empty?1");
296
+ var c = require("./empty?2");
297
+ should.exist(a);
298
+ should.exist(b);
299
+ should.exist(c);
300
+ a.should.be.not.equal(b);
301
+ a.should.be.not.equal(c);
302
+ b.should.be.not.equal(c);
303
+ });
304
+
305
it("should pass query to loader", function() {
306
var result = require("../loaders/queryloader?query!./a?resourcequery");
307
result.should.be.eql({
0 commit comments