mirror of https://github.com/webpack/webpack.git
14 lines
228 B
JavaScript
14 lines
228 B
JavaScript
|
import "./no-warn"
|
||
|
|
||
|
it("global", () => {
|
||
|
expect(typeof global).toBe("object");
|
||
|
});
|
||
|
|
||
|
it("__filename", () => {
|
||
|
expect(typeof __filename).toBe("string");
|
||
|
});
|
||
|
|
||
|
it("__dirname", () => {
|
||
|
expect(typeof __dirname).toBe("string");
|
||
|
});
|