Skip to main content
Module

x/http_compress/dev_deps.ts>ItDefinition

Compress HTTP response, supported Web standard compression methods
Latest
interface ItDefinition
implements Omit<Deno.TestDefinition, "fn">
Re-export
import { type ItDefinition } from "https://deno.land/x/http_compress@1.0.1/dev_deps.ts";

The options for creating an individual test case with the it function.

Properties

fn: (this: T, t: Deno.TestContext) => void | Promise<void>
optional
suite: TestSuite<T>

The describe function returns a TestSuite representing the group of tests. If it is called within a describe calls fn, the suite will default to that parent describe calls returned TestSuite. If it is not called within a describe calls fn, the suite will default to the TestSuite representing the global group of tests.