Skip to content

Commit b5031c3

Browse files
authored
Merge pull request #6 from carlopi/fixarrowtest
Reenable arrow test by disabling autoloading
2 parents f8877e3 + 08816dc commit b5031c3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/arrow.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@ import * as duckdb from '..';
22
import * as assert from 'assert';
33
import {ArrowArray} from "..";
44

5-
describe.skip('arrow IPC API fails neatly when extension not loaded', function() {
5+
describe('arrow IPC API fails neatly when extension not loaded', function() {
66
// Note: arrow IPC api requires the arrow extension to be loaded. The tests for this functionality reside in:
77
// https://github.com/duckdblabs/arrow
88
let db: duckdb.Database;
99
let conn;
1010
before((done) => {
1111
db = new duckdb.Database(':memory:', {"allow_unsigned_extensions": "true"}, () => {
12-
done();
12+
db.all('SET autoload_known_extensions=false;', () => {
13+
done();
14+
});
1315
});
1416
});
1517

0 commit comments

Comments
 (0)