1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00:00

[CL-524] Ignore kitchen sink virtual scroll story (#12858)

This commit is contained in:
Victoria League
2025-01-14 11:03:58 -05:00
committed by GitHub
parent 8e95029439
commit e568a7a812
2 changed files with 7 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ import { TableDataSource, TableModule } from "../../../table";
imports: [DialogModule, IconButtonModule, SectionComponent, TableModule, ScrollingModule],
template: /*html*/ `<bit-section>
<cdk-virtual-scroll-viewport scrollWindow itemSize="47">
<bit-table [dataSource]="dataSource" data-chromatic="ignore">
<bit-table [dataSource]="dataSource">
<ng-container header>
<tr>
<th bitCell bitSortable="id" default>Id</th>

View File

@@ -196,4 +196,10 @@ export const VirtualScrollBlockingDialog: Story = {
await userEvent.click(dialogButton);
},
parameters: {
chromatic: {
// TODO CL-524 fix flaky story (number of virtual scroll rows is inconsistent)
disableSnapshot: true,
},
},
};