We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c07e55c commit c11d0d3Copy full SHA for c11d0d3
tests/suites/tenant/TenantPage.ts
@@ -29,14 +29,17 @@ export class TenantPage extends PageModel {
29
30
async waitForDiagnosticsToLoad() {
31
await this.diagnosticsContainer.waitFor({state: 'visible', timeout: VISIBILITY_TIMEOUT});
32
+ return true;
33
}
34
35
async isDiagnosticsVisible() {
- return this.diagnosticsContainer.waitFor({state: 'visible', timeout: VISIBILITY_TIMEOUT});
36
+ await this.diagnosticsContainer.waitFor({state: 'visible', timeout: VISIBILITY_TIMEOUT});
37
38
39
40
async isEmptyStateVisible() {
- return this.emptyState.waitFor({state: 'visible', timeout: VISIBILITY_TIMEOUT});
41
+ await this.emptyState.waitFor({state: 'visible', timeout: VISIBILITY_TIMEOUT});
42
43
44
45
async getEmptyStateTitle(): Promise<string> {
0 commit comments