From 619690cc67e06a5754e587b7b663d03ebec2d1b3 Mon Sep 17 00:00:00 2001 From: DaddyWarbucks Date: Fri, 15 Mar 2024 09:28:02 -0500 Subject: [PATCH] Fix typo --- test/index.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/index.test.ts b/test/index.test.ts index e0cc11a..aadf36f 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -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'; @@ -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;