Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
},
};
Loading