This commit is contained in:
Jan Prochazka
2024-09-19 14:17:11 +02:00
parent b30f139b5d
commit 66b39c1f80
2 changed files with 4 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ describe('Schema tests', () => {
await driver.query(schemaConn, `create table myschema.myt1 (id int not null primary key)`);
const structure1 = await driver.analyseFull(schemaConn);
expect(structure1.tables.length).toEqual(1);
expect(structure1.tables[0].tableName).toEqual('myt1');
expect(structure1.tables[0].pureName).toEqual('myt1');
})
);
});