mirror of https://github.com/webpack/webpack.git
7 lines
174 B
JavaScript
7 lines
174 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(nsObj({ default: "b" }));
|
||
|
});
|
||
|
});
|