We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8877e3 + 08816dc commit b5031c3Copy full SHA for b5031c3
test/arrow.test.ts
@@ -2,14 +2,16 @@ import * as duckdb from '..';
2
import * as assert from 'assert';
3
import {ArrowArray} from "..";
4
5
-describe.skip('arrow IPC API fails neatly when extension not loaded', function() {
+describe('arrow IPC API fails neatly when extension not loaded', function() {
6
// Note: arrow IPC api requires the arrow extension to be loaded. The tests for this functionality reside in:
7
// https://github.com/duckdblabs/arrow
8
let db: duckdb.Database;
9
let conn;
10
before((done) => {
11
db = new duckdb.Database(':memory:', {"allow_unsigned_extensions": "true"}, () => {
12
- done();
+ db.all('SET autoload_known_extensions=false;', () => {
13
+ done();
14
+ });
15
});
16
17
0 commit comments