duckdb 0.10.2-dev3.0 → 0.10.2-dev7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/test/arrow.test.ts +2 -0
- package/test/jsdoc.test.ts +3 -0
package/package.json
CHANGED
package/test/arrow.test.ts
CHANGED
@@ -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
|
+
}
|
package/test/jsdoc.test.ts
CHANGED
@@ -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
|
+
}
|