webpack/test/configCases/performance/many-async-imports/index.js

6 lines
169 B
JavaScript
Raw Normal View History

import promise from "./start";
it("should compile a module with many async imports in acceptable time", function(done) {
promise.then(() => done(), e => done(e));
});