mirror of https://github.com/webpack/webpack.git
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
|
|
const { main } = require("./module");
|
||
|
|
|
||
|
|
it("should handle require.main", async () => {
|
||
|
|
expect(require.main === module).toBe(true);
|
||
|
|
|
||
|
|
expect(main).toBe(false);
|
||
|
|
});
|