Skip to content

Commit 08816dc

Browse files
committed
Reenable arrow test by disabling autoloading
Problem with CI was that this test is depenendent on whenever CI had finished or not uploading extensions
1 parent 249288e commit 08816dc

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)