mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 17:47:10 +00:00
test: remove unintended awaits
Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
@@ -24,7 +24,7 @@ export class DataSourcePage extends BasePage {
|
||||
|
||||
async getDatabaseTypeList() {
|
||||
await this.databaseType.click();
|
||||
const nodes = await this.rootPage.locator('.nc-dropdown-ext-db-type').locator('.ant-select-item');
|
||||
const nodes = this.rootPage.locator('.nc-dropdown-ext-db-type').locator('.ant-select-item');
|
||||
const list = [];
|
||||
for (let i = 0; i < (await nodes.count()); i++) {
|
||||
const node = nodes.nth(i);
|
||||
|
||||
Reference in New Issue
Block a user