duckdb 0.10.2-dev3.0 → 0.10.2-dev7.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
4
  "types": "./lib/duckdb.d.ts",
5
- "version": "0.10.2-dev3.0",
5
+ "version": "0.10.2-dev7.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
@@ -2,6 +2,7 @@ import * as duckdb from '..';
2
2
  import * as assert from 'assert';
3
3
  import {ArrowArray} from "..";
4
4
 
5
+ if (process?.platform != 'win32') {
5
6
  describe('arrow IPC API fails neatly when extension not loaded', function() {
6
7
  // Note: arrow IPC api requires the arrow extension to be loaded. The tests for this functionality reside in:
7
8
  // https://github.com/duckdblabs/arrow
@@ -53,3 +54,4 @@ describe('arrow IPC API fails neatly when extension not loaded', function() {
53
54
  });
54
55
  });
55
56
  });
57
+ }
@@ -23,6 +23,8 @@ export interface Node {
23
23
  longname: string;
24
24
  scope: string;
25
25
  }
26
+
27
+ if (process?.platform != 'win32') {
26
28
  describe("JSDoc contains all methods", () => {
27
29
  let docs: Node[];
28
30
  before(async () => {
@@ -57,3 +59,4 @@ describe("JSDoc contains all methods", () => {
57
59
  checkDocs(duckdb, 'module:duckdb');
58
60
  });
59
61
  });
62
+ }