Grégoire Geis 72161a64b2 @babel/traverse: Fix NodePath.getData (#9415)
* @babel/traverse: Fix NodePath.getData

Currently, if the obtained value is `false`, it will be replaced by the given default value, which is invalid. This makes sure that we only set the default value when the value is `undefined`, instead of falsy.

* Add test and fix object protoype

* Allow false as default value
2019-03-26 16:58:38 -07:00

44 lines
1.1 KiB
JavaScript

import { NodePath } from "../../lib";
describe("NodePath", () => {
describe("setData/getData", () => {
it("can set default value", () => {
const path = new NodePath({}, {});
expect(path.getData("foo", "test")).toBe("test");
});
it("can set false", () => {
const path = new NodePath({}, {});
path.setData("foo", false);
expect(path.getData("foo", true)).toBe(false);
});
it("can set true", () => {
const path = new NodePath({}, {});
path.setData("foo", true);
expect(path.getData("foo", false)).toBe(true);
});
it("can set null", () => {
const path = new NodePath({}, {});
path.setData("foo", null);
expect(path.getData("foo", true)).toBe(null);
});
it("can use false as default", () => {
const path = new NodePath({}, {});
expect(path.getData("foo", false)).toBe(false);
});
it("does not use object base properties", () => {
const path = new NodePath({}, {});
expect(path.getData("__proto__", "test")).toBe("test");
});
});
});