Skip to content

Commit

Permalink
Merge pull request #6 from carlopi/fixarrowtest
Browse files Browse the repository at this point in the history
Reenable arrow test by disabling autoloading
  • Loading branch information
hannes authored Oct 10, 2023
2 parents f8877e3 + 08816dc commit b5031c3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/arrow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ import * as duckdb from '..';
import * as assert from 'assert';
import {ArrowArray} from "..";

describe.skip('arrow IPC API fails neatly when extension not loaded', function() {
describe('arrow IPC API fails neatly when extension not loaded', function() {
// Note: arrow IPC api requires the arrow extension to be loaded. The tests for this functionality reside in:
// https://github.com/duckdblabs/arrow
let db: duckdb.Database;
let conn;
before((done) => {
db = new duckdb.Database(':memory:', {"allow_unsigned_extensions": "true"}, () => {
done();
db.all('SET autoload_known_extensions=false;', () => {
done();
});
});
});

Expand Down

0 comments on commit b5031c3

Please sign in to comment.