mirror of https://github.com/webpack/webpack.git
7 lines
152 B
JavaScript
7 lines
152 B
JavaScript
|
it("should work", function() {
|
||
|
return import("./module").then(function(module) {
|
||
|
const result = module.run();
|
||
|
expect(result).toEqual(84);
|
||
|
});
|
||
|
});
|