Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DaddyWarbucks committed Mar 15, 2024
1 parent a55ac55 commit 619690c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import pg from 'pg';
import assert from 'assert';
import { expect } from 'chai';

console.log('DATABASE_URL', process.env.DB);

import Sequelize, { Op } from 'sequelize';
import errors from '@feathersjs/errors';
import type { Paginated } from '@feathersjs/feathers';
Expand Down Expand Up @@ -85,7 +87,7 @@ const testSuite = adaptertests([
]);

// The base tests require the use of Sequelize.BIGINT to avoid 'out of range errors'
// Unfortunetly BIGINT's are serialized as Strings:
// Unfortunately BIGINT's are serialized as Strings:
// https://github.com/sequelize/sequelize/issues/1774
pg.defaults.parseInt8 = true;

Expand Down

0 comments on commit 619690c

Please sign in to comment.