Skip to content

Commit

Permalink
uncomment
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars-Erik Roald committed Jul 4, 2024
1 parent 6d57c68 commit 10dd412
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions tests/getMany.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ afterAll(async () => {


beforeAll(async () => {
// await createMs('mssql');
await createMs('mssql');
await insertData('pg');
// await insertData('mssql');
// if (major === 18)
// await insertData('mssqlNative');
// await insertData('mysql');
// await insertData('sqlite');
// await insertData('sqlite2');
// await insertData('sap');
// await insertData('oracle');
// hostExpress();
await insertData('mssql');
if (major === 18)
await insertData('mssqlNative');
await insertData('mysql');
await insertData('sqlite');
await insertData('sqlite2');
await insertData('sap');
await insertData('oracle');
hostExpress();

async function insertData(dbName) {
const { db, init } = getDb(dbName);
Expand Down Expand Up @@ -645,16 +645,16 @@ describe('aggregate each row', () => {
}
}, 30000);

describe.only('getMany with relations', () => {
describe('getMany with relations', () => {
test('pg', async () => await verify('pg'));
// test('oracle', async () => await verify('oracle'));
// test('mssql', async () => await verify('mssql'));
// if (major === 18)
// test('mssqlNative', async () => await verify('mssqlNative'));
// test('mysql', async () => await verify('mysql'));
// test('sqlite', async () => await verify('sqlite'));
// test('sap', async () => await verify('sap'));
// test('http', async () => await verify('http'));
test('oracle', async () => await verify('oracle'));
test('mssql', async () => await verify('mssql'));
if (major === 18)
test('mssqlNative', async () => await verify('mssqlNative'));
test('mysql', async () => await verify('mysql'));
test('sqlite', async () => await verify('sqlite'));
test('sap', async () => await verify('sap'));
test('http', async () => await verify('http'));

async function verify(dbName) {
const { db } = getDb(dbName);
Expand Down

0 comments on commit 10dd412

Please sign in to comment.