mirror of https://github.com/webpack/webpack.git
11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
|
it("should run", function() {
|
||
|
|
||
|
});
|
||
|
|
||
|
it("should name require", function() {
|
||
|
var fs = nodeRequire("fs");
|
||
|
var source = fs.readFileSync(__filename, "utf-8");
|
||
|
|
||
|
expect(source).toMatch(/require\(\[[^\]]*\], function\(/);
|
||
|
});
|