diff --git a/app/__test__/data/pg.spec.ts b/app/__test__/data/specs/connection/pg.spec.ts similarity index 94% rename from app/__test__/data/pg.spec.ts rename to app/__test__/data/specs/connection/pg.spec.ts index bf65c66..2f0fbbc 100644 --- a/app/__test__/data/pg.spec.ts +++ b/app/__test__/data/specs/connection/pg.spec.ts @@ -13,7 +13,9 @@ const connection = new PostgresConnection({ port: 5433, }); -describe("postgres", () => { +const ALL_TESTS = !!process.env.ALL_TESTS; + +describe.skipIf(ALL_TESTS)("postgres", () => { test.skip("introspector", async () => { const introspector = new PostgresIntrospector(connection.kysely, { plugins: [new ParseJSONResultsPlugin()],