diff options
Diffstat (limited to 'test/js/node/path/path.test.js')
-rw-r--r-- | test/js/node/path/path.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/js/node/path/path.test.js b/test/js/node/path/path.test.js index ce41ca10f..86807b325 100644 --- a/test/js/node/path/path.test.js +++ b/test/js/node/path/path.test.js @@ -9,8 +9,8 @@ const strictEqual = (...args) => { expect(true).toBe(true); }; -it('should not inherit Object.prototype', () => { - expect(path).not.toHaveProperty('toString'); +it("should not inherit Object.prototype", () => { + expect(path).not.toHaveProperty("toString"); }); it("path.basename", () => { |