ignore pg test for now (missing env on ci)

This commit is contained in:
dswbx
2025-03-07 15:04:44 +01:00
parent a5c422d45d
commit 25a3cb9655

View File

@@ -13,7 +13,9 @@ const connection = new PostgresConnection({
port: 5433, port: 5433,
}); });
describe("postgres", () => { const ALL_TESTS = !!process.env.ALL_TESTS;
describe.skipIf(ALL_TESTS)("postgres", () => {
test.skip("introspector", async () => { test.skip("introspector", async () => {
const introspector = new PostgresIntrospector(connection.kysely, { const introspector = new PostgresIntrospector(connection.kysely, {
plugins: [new ParseJSONResultsPlugin()], plugins: [new ParseJSONResultsPlugin()],