import { type Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { TestContext } = Deno;
Context that is passed to a testing function, which can be used to either gain information about the current test, or register additional test steps within the current test.
Properties
If the current test is a step of another test, the parent test context will be set here.
Methods
Run a sub step of the parent test or step. Returns a promise that resolves to a boolean signifying if the step completed successfully.
The returned promise never rejects unless the arguments are invalid.
If the test was ignored the promise returns false
.
Deno.test({
name: "a parent test",
async fn(t) {
console.log("before the step");
await t.step({
name: "step 1",
fn(t) {
console.log("current step:", t.name);
}
});
console.log("after the step");
}
});
Run a sub step of the parent test or step. Returns a promise that resolves to a boolean signifying if the step completed successfully.
The returned promise never rejects unless the arguments are invalid.
If the test was ignored the promise returns false
.
Deno.test(
"a parent test",
async (t) => {
console.log("before the step");
await t.step(
"step 1",
(t) => {
console.log("current step:", t.name);
}
);
console.log("after the step");
}
);
Run a sub step of the parent test or step. Returns a promise that resolves to a boolean signifying if the step completed successfully.
The returned promise never rejects unless the arguments are invalid.
If the test was ignored the promise returns false
.
Deno.test(async function aParentTest(t) {
console.log("before the step");
await t.step(function step1(t) {
console.log("current step:", t.name);
});
console.log("after the step");
});