[test] Add db table absence test; Remove useless isServerStartedUp

This commit is contained in:
Sergey Konovalov
2024-03-24 12:32:47 +03:00
parent 2b9f7fd7cd
commit f1ba950b2f
2 changed files with 6 additions and 3 deletions

View File

@ -230,6 +230,11 @@ describe('Base database connector', function () {
}
});
}
const table = "unused_table";
test(`${table} table absence`, async function () {
const result = await baseConnector.getTableColumns(ctx, table);
expect(result).toEqual([]);
});
});
describe('Changes manipulations', function () {