Additional properties on the test function.
Registers a skipped test. Equivalent to QUnit.test.skip.
The test body is never executed; the test is reported as ignored by Deno's runner.
Registers a todo test. Equivalent to QUnit.test.todo.
The test body is never executed; the test is reported as ignored by Deno's runner
(Deno has no native todo concept).
Additional properties on the test function.
Registers a skipped test. Equivalent to QUnit.test.skip.
The test body is never executed; the test is reported as ignored by Deno's runner.
Registers a todo test. Equivalent to QUnit.test.todo.
The test body is never executed; the test is reported as ignored by Deno's runner
(Deno has no native todo concept).
Additional properties on the test function.
Registers a skipped test. Equivalent to QUnit.test.skip.
The test body is never executed; the test is reported as ignored by Deno's runner.
Registers a todo test. Equivalent to QUnit.test.todo.
The test body is never executed; the test is reported as ignored by Deno's runner
(Deno has no native todo concept).
test(testName: string,testContent: (assert: Assert,meta: { testName: string; options: unknown; context: Record<string, unknown>; }) => void | Promise<void>): void
Defines an individual test within a module for Deno's BDD test runner.
Wraps it() from @std/testing/bdd and handles the full QUnit lifecycle:
beforeEach/afterEach hooks, async assertion waiting, and step verification.
Must be called inside a module() callback.
testContent: (assert: Assert,meta: { testName: string; options: unknown; context: Record<string, unknown>; }) => void | Promise<void>
Test callback receiving (assert, { testName, options })
test(testName: string,runtimeOptions: object,testContent: (assert: Assert,meta: { testName: string; options: unknown; context: Record<string, unknown>; }) => void | Promise<void>): void
Defines an individual test with optional Deno BDD runtime options forwarded to it().
testContent: (assert: Assert,meta: { testName: string; options: unknown; context: Record<string, unknown>; }) => void | Promise<void>