webpack/test/configCases/context-replacement/System.import/index.js

7 lines
167 B
JavaScript

it("should replace a async context with a manual map", function() {
var a = "a";
return import(a).then(function(a) {
expect(a).toEqual({ default: "b" });
});
});