Skip to content

Commit f463c98

Browse files
committed
Fix e2e tests
1 parent 5563d38 commit f463c98

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/databricks-vscode/src/test/e2e/utils/commonUtils.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,10 @@ export async function findViewSection(name: ViewSectionType) {
4141
);
4242
const views =
4343
(await (await control?.openView())?.getContent()?.getSections()) ?? [];
44+
console.log("Views:", views.length);
4445
for (const v of views) {
4546
const title = await v.getTitle();
47+
console.log("View title:", title);
4648
if (title === null) {
4749
continue;
4850
}

0 commit comments

Comments
 (0)