When I was writing for tests for groupBy and groupByToMap, I noticed there were no tests for these.
@@ -13,3 +13,13 @@ test("basic functionality", () => {
expect(array.at(-4)).toBeUndefined();
expect(array.at(-Infinity)).toBeUndefined();
});
+
+test("is unscopable", () => {
+ expect(Array.prototype[Symbol.unscopables].at).toBeTrue();
+ const array = [];
+ with (array) {
+ expect(() => {
+ at;
+ }).toThrowWithMessage(ReferenceError, "'at' is not defined");
+ }
+});
@@ -43,3 +43,13 @@ describe("normal behavior", () => {
expect(array).toEqual([1, 2, 1]);
+ expect(Array.prototype[Symbol.unscopables].copyWithin).toBeTrue();
+ copyWithin;
+ }).toThrowWithMessage(ReferenceError, "'copyWithin' is not defined");
@@ -42,3 +42,13 @@ test("item added to array after exhaustion is inaccessible", () => {
a.push("c");
expect(it.next()).toEqual({ value: undefined, done: true });
+ expect(Array.prototype[Symbol.unscopables].entries).toBeTrue();
+ entries;
+ }).toThrowWithMessage(ReferenceError, "'entries' is not defined");
@@ -18,3 +18,13 @@ test("basic functionality", () => {
expect([1, 2, 3].fill(4, 3, 5)).toEqual([1, 2, 3]);
expect(Array(3).fill(4)).toEqual([4, 4, 4]);
+ expect(Array.prototype[Symbol.unscopables].fill).toBeTrue();
+ fill;
+ }).toThrowWithMessage(ReferenceError, "'fill' is not defined");
@@ -57,3 +57,13 @@ describe("normal behavior", () => {
expect(callbackCalled).toBe(2);
+ expect(Array.prototype[Symbol.unscopables].find).toBeTrue();
+ find;
+ }).toThrowWithMessage(ReferenceError, "'find' is not defined");
+ expect(Array.prototype[Symbol.unscopables].findIndex).toBeTrue();
+ findIndex;
+ }).toThrowWithMessage(ReferenceError, "'findIndex' is not defined");
@@ -59,3 +59,13 @@ describe("normal behavior", () => {
+ expect(Array.prototype[Symbol.unscopables].findLast).toBeTrue();
+ findLast;
+ }).toThrowWithMessage(ReferenceError, "'findLast' is not defined");
+ expect(Array.prototype[Symbol.unscopables].findLastIndex).toBeTrue();
+ findLastIndex;
+ }).toThrowWithMessage(ReferenceError, "'findLastIndex' is not defined");
@@ -51,3 +51,13 @@ describe("normal behavior", () => {
expect(array1.flat({ depth: 2 })).toEqual([1, 2, [3, 4, [5, 6, [7, 8]]]]);
+ expect(Array.prototype[Symbol.unscopables].flat).toBeTrue();
+ flat;
+ }).toThrowWithMessage(ReferenceError, "'flat' is not defined");
@@ -69,3 +69,13 @@ describe("normal behavior", () => {
expect(called).toBeFalse();
+ expect(Array.prototype[Symbol.unscopables].flatMap).toBeTrue();
+ flatMap;
+ }).toThrowWithMessage(ReferenceError, "'flatMap' is not defined");
@@ -16,3 +16,13 @@ test("basic functionality", () => {
expect(array.includes(2, -100)).toBeTrue();
expect(array.includes("friends", 100)).toBeFalse();
+ expect(Array.prototype[Symbol.unscopables].includes).toBeTrue();
+ includes;
+ }).toThrowWithMessage(ReferenceError, "'includes' is not defined");
+ expect(Array.prototype[Symbol.unscopables].keys).toBeTrue();
+ keys;
+ }).toThrowWithMessage(ReferenceError, "'keys' is not defined");
a.push(3);
+ expect(Array.prototype[Symbol.unscopables].values).toBeTrue();
+ values;
+ }).toThrowWithMessage(ReferenceError, "'values' is not defined");