Skip to content

Commit 579c4b2

Browse files
committed
Changed the linting
1 parent a3417b5 commit 579c4b2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/jest-util/src/__tests__/installCommonGlobals.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ it('overrides process.features.require_module to false when present', () => {
5454

5555
// Some Node versions may not expose the flag; only assert if present
5656
const features = (myGlobal.process as any).features;
57-
if (features && Object.prototype.hasOwnProperty.call(features, 'require_module')) {
57+
if (
58+
features &&
59+
Object.prototype.hasOwnProperty.call(features, 'require_module')
60+
) {
5861
expect(features.require_module).toBe(false);
5962
}
6063
});

0 commit comments

Comments
 (0)