deno.land / std@0.224.0 / front_matter / json_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
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { test } from "./test.ts";import { extract } from "./json.ts";import { runExtractJSONTests, runExtractTypeErrorTests, runTestInvalidInputTests, runTestValidInputTests,} from "./_test_utils.ts";
Deno.test("test() handles valid input", () => { runTestValidInputTests("json", test);});
Deno.test("test() handles invalid input", () => { runTestInvalidInputTests("json", test);});
Deno.test("json() extracts type error on invalid input", () => { runExtractTypeErrorTests("json", extract);});
Deno.test("json() parses json delineate by ---json", async () => { await runExtractJSONTests(extract);});
std

Version Info

Tagged at
3 weeks ago