removed only test

This commit is contained in:
Umed Khudoiberdiev 2017-06-19 15:52:00 +05:00
parent 83e89fd8c0
commit e7a18d050b

View File

@ -187,7 +187,7 @@ describe("Connection", () => {
});
describe.only("log a schema when connection.logSyncSchema is called", function() {
describe("log a schema when connection.logSyncSchema is called", function() {
let connections: Connection[];
before(async () => connections = await createTestingConnections({
@ -197,7 +197,7 @@ describe("Connection", () => {
it("should return sql log properly", () => Promise.all(connections.map(async connection => {
const sql = await connection.logSyncSchema();
console.log(sql);
// console.log(sql);
})));
});