Skip to content
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
<<: *default-job
docker:
- image: mcr.microsoft.com/playwright:v1.55.1-noble
resource_class: medium+
resource_class: large
steps:
- checkout
- install_js:
Expand Down
4 changes: 2 additions & 2 deletions packages/x-charts/src/hooks/useChartGradientId.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('useChartGradientId', () => {
</ChartDataProvider>,
);

expect(screen.getByText(/[«|:]\w+[»|:]-gradient-test-id/)).toBeVisible();
expect(screen.getByText(/[«|:|_]\w+[»|:|_]-gradient-test-id/)).toBeVisible();
});

describe('useChartGradientIdObjectBound', () => {
Expand All @@ -34,7 +34,7 @@ describe('useChartGradientId', () => {
</ChartDataProvider>,
);

expect(screen.getByText(/[«|:]\w+[»|:]-gradient-test-id-object-bound/)).toBeVisible();
expect(screen.getByText(/[«|:|_]\w+[»|:|_]-gradient-test-id-object-bound/)).toBeVisible();
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ describe('<DataGridPro /> - Columns', () => {
await act(() => apiRef.current?.showColumnMenu('brand'));
const menu = screen.getByRole('menu');
await waitFor(() => {
expect(menu.id).to.match(/[«|:]r[0-9a-z]+[»|:]/);
expect(menu.id).to.match(/[«|:|_]r_?[0-9a-z]+[»|:|_]/);
});
expect(menu.getAttribute('aria-labelledby')).to.match(/[«|:]r[0-9a-z]+[»|:]/);
expect(menu.getAttribute('aria-labelledby')).to.match(/[«|:|_]r_?[0-9a-z]+[»|:|_]/);
});
});

Expand Down
Loading
Loading