deno.land / std@0.166.0 / collections / drop_while_test.ts

drop_while_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";import { dropWhile } from "./drop_while.ts";
Deno.test("[collections/dropWhile] Array", () => { const arr = [1, 2, 3, 4, 5, 6]; const actual = dropWhile(arr, (i) => i !== 2);
assertEquals(actual, [2, 3, 4, 5, 6]);});
Deno.test("[collections/dropWhile] Add two to each num in predicate", () => { const arr = [1, 2, 3, 4, 5, 6]; const actual = dropWhile(arr, (i) => i + 2 !== 6);
assertEquals(actual, [4, 5, 6]);});
Deno.test("[collections/dropWhile] Negatives", () => { const arr = [-5, -6];
const actual = dropWhile(arr, (i) => i < -4); assertEquals(actual, []);});
Deno.test("[collections/dropWhile] No mutation", () => { const arr = [1, 2, 3, 4, 5, 6];
const actual = dropWhile(arr, (i) => i !== 4); assertEquals(actual, [4, 5, 6]); assertEquals(arr, [1, 2, 3, 4, 5, 6]);});
Deno.test("[collections/dropWhile] Empty input array returns empty array", () => { const arr: number[] = [];
const actual = dropWhile(arr, (i) => i > 4);
assertEquals(actual, []);});
Deno.test("[collections/dropWhile] Returns empty array when the last element doesn't match the predicate", () => { const arr = [1, 2, 3, 4];
const actual = dropWhile(arr, (i) => i !== 4);
assertEquals(actual, [4]);});
Deno.test("[collections/dropWhile] Returns the same array when all elements match the predicate", () => { const arr = [1, 2, 3, 4];
const actual = dropWhile(arr, (i) => i !== 400);
assertEquals(actual, []);});
std

Version Info

Tagged at
a year ago