Skip to content

Commit f6dc96b

Browse files
ktranEric Leese
authored andcommitted
Disable flaky selector-stats-tracing_test
Bug: 408134244 Change-Id: I65bb4024d7c93dea77bd98803b505a5aa5caf6de Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6429684 Auto-Submit: Kim-Anh Tran <[email protected]> Reviewed-by: Eric Leese <[email protected]> Commit-Queue: Kim-Anh Tran <[email protected]>
1 parent 7d76bab commit f6dc96b

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

test/e2e/performance/selector-stats-tracing_test.ts

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -64,23 +64,26 @@ describe('The Performance panel', function() {
6464
});
6565
});
6666

67-
it('Can navigate to CSS file in source panel via available link in selector stats table', async () => {
68-
await cssSelectorStatsRecording('selectorStats/page-with-style');
67+
// Flaky test.
68+
it.skip(
69+
'[crbug.com/408134244] Can navigate to CSS file in source panel via available link in selector stats table',
70+
async () => {
71+
await cssSelectorStatsRecording('selectorStats/page-with-style');
6972

70-
await step('Check that the selector stats table was rendered successfully by default', async () => {
71-
await navigateToSelectorStatsTab();
72-
const rows =
73-
await getDataGridRows(1 /* expectedNumberOfRows*/, undefined /* root*/, false /* matchExactNumberOfRows*/);
74-
assert.isAtLeast(rows.length, 1, 'Selector stats table should contain at least one row');
75-
});
73+
await step('Check that the selector stats table was rendered successfully by default', async () => {
74+
await navigateToSelectorStatsTab();
75+
const rows = await getDataGridRows(
76+
1 /* expectedNumberOfRows*/, undefined /* root*/, false /* matchExactNumberOfRows*/);
77+
assert.isAtLeast(rows.length, 1, 'Selector stats table should contain at least one row');
78+
});
7679

77-
await step('Validate source file is open via available link in selector stats table', async () => {
78-
await scrollElementIntoView('devtools-linkifier');
79-
await click('devtools-linkifier');
80-
// Look at source tabs
81-
await validateSourceTabs();
82-
});
83-
});
80+
await step('Validate source file is open via available link in selector stats table', async () => {
81+
await scrollElementIntoView('devtools-linkifier');
82+
await click('devtools-linkifier');
83+
// Look at source tabs
84+
await validateSourceTabs();
85+
});
86+
});
8487

8588
// Flaking on multiple bots on CQ.
8689
it.skip('[crbug.com/349787448] CSS selector stats performance test', async () => {

0 commit comments

Comments
 (0)