function module.skipModule skipModule(moduleName: string,_moduleContent?: unknown): void Skips all tests inside a module. Equivalent to QUnit.module.skip. The module is registered as ignored by Deno's runner; no test bodies run. Examples Example 1 import { module, test } from "qunitx"; module.skip("Math — not yet implemented", () => { test("addition", (assert) => { assert.equal(1 + 1, 2); }); }); Parameters moduleName: string Name of the module to skip. optional _moduleContent: unknown Optional body (ignored — no tests run). Return Type void