Skip to main content
Go to Latest
File
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";import { takeWhile } from "./take_while.ts";
Deno.test("[collections/takeWhile] Num array", () => { const arr = [1, 2, 3, 4, 5, 6]; const actual = takeWhile(arr, (i) => i !== 4);
assertEquals(actual, [1, 2, 3]);});
Deno.test("[collections/takeWhile] Add two to each num in predicate", () => { const arr = [1, 2, 3, 4, 5, 6]; const actual = takeWhile(arr, (i) => i + 2 !== 6);
assertEquals(actual, [1, 2, 3]);});
Deno.test("[collections/takeWhile] Negatives", () => { const arr = [-1, -2, -3, -4, -5, -6];
const actual = takeWhile(arr, (i) => i > -4); assertEquals(actual, [-1, -2, -3]);});
Deno.test("[collections/takeWhile] No mutation", () => { const arr = [-1, -2, -3, -4, -5, -6];
const actual = takeWhile(arr, (i) => i > -4); assertEquals(actual, [-1, -2, -3]); assertEquals(arr, [-1, -2, -3, -4, -5, -6]);});
Deno.test("[collections/takeWhile] Empty input array returns empty array", () => { const arr: number[] = [];
const actual = takeWhile(arr, (i) => i > 4);
assertEquals(actual, []);});
Deno.test("[collections/takeWhile] Returns empty array when the first element doesn't match the predicate", () => { const arr = [1, 2, 3, 4];
const actual = takeWhile(arr, (i) => i !== 1);
assertEquals(actual, []);});
Deno.test("[collections/takeWhile] Returns the same array when all elements match the predicate", () => { const arr = [1, 2, 3, 4];
const actual = takeWhile(arr, (i) => i != 400);
assertEquals(actual, [1, 2, 3, 4]);});