Skip to content

Commit

Permalink
Merge pull request #78 from carlopi/skip_jsdoc_win
Browse files Browse the repository at this point in the history
Skip jsdoc checks on windows due to https://github.com/nodejs/node/is…
  • Loading branch information
hannes authored Apr 22, 2024
2 parents 0cf7eb8 + 139c829 commit 2ab5f7a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/jsdoc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down Expand Up @@ -57,3 +59,4 @@ describe("JSDoc contains all methods", () => {
checkDocs(duckdb, 'module:duckdb');
});
});
}

0 comments on commit 2ab5f7a

Please sign in to comment.