webpack/test/cases/chunks/import/index.js

9 lines
187 B
JavaScript

it("should be able to use import", function(done) {
import("./two").then(function(two) {
expect(two).toEqual({ default: 2 });
done();
}).catch(function(err) {
done(err);
});
});