diff --git a/test/jsdoc.test.ts b/test/jsdoc.test.ts index 7e6f7086..25734a4e 100644 --- a/test/jsdoc.test.ts +++ b/test/jsdoc.test.ts @@ -23,6 +23,8 @@ export interface Node { longname: string; scope: string; } + +if (process.platform != 'win32') { describe("JSDoc contains all methods", () => { let docs: Node[]; before(async () => { @@ -57,3 +59,4 @@ describe("JSDoc contains all methods", () => { checkDocs(duckdb, 'module:duckdb'); }); }); +}