Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lolopinto committed Jun 12, 2023
1 parent 32fd3ed commit c3863e2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions ts/src/core/ent_errors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,20 +92,20 @@ const invalidFieldOpts: LoadEntOptions<User> = {
}),
};

// describe("postgres", () => {
// const tdb = new TempDB(Dialect.Postgres, [tbl]);
describe("postgres", () => {
const tdb = new TempDB(Dialect.Postgres, [tbl]);

// beforeAll(async () => {
// await tdb.beforeAll();
// await createAllRows();
// });
beforeAll(async () => {
await tdb.beforeAll();
await createAllRows();
});

// afterAll(async () => {
// await tdb.afterAll();
// });
afterAll(async () => {
await tdb.afterAll();
});

// commonTests();
// });
commonTests();
});

describe("sqlite", () => {
setupSqlite(`sqlite:///ent_db_errors_test.db`, () => [tbl]);
Expand Down

0 comments on commit c3863e2

Please sign in to comment.