mirror of https://github.com/webpack/webpack.git
6 lines
169 B
JavaScript
6 lines
169 B
JavaScript
|
import promise from "./start";
|
||
|
|
||
|
it("should compile a module with many async imports in acceptable time", function(done) {
|
||
|
promise.then(() => done(), e => done(e));
|
||
|
});
|