deno.land / std@0.224.0 / text / compare_similarity_test.ts

compare_similarity_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
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.import { assertEquals } from "../assert/mod.ts";import { compareSimilarity } from "./compare_similarity.ts";
Deno.test("compareSimilarity() handles basic example 1", function () { const words = ["hi", "hello", "help"];
assertEquals( JSON.stringify(words.sort(compareSimilarity("hep"))), '["help","hi","hello"]', );});
Deno.test("compareSimilarity() handles basic example 2", function () { const words = ["hi", "hello", "help", "HOWDY"];
assertEquals( JSON.stringify( words.sort(compareSimilarity("HI", { caseSensitive: true })), ), '["hi","help","HOWDY","hello"]', );});
std

Version Info

Tagged at
3 weeks ago