Skip to content

Commit c0b06ac

Browse files
committed
release version major
1 parent 9438628 commit c0b06ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/src/pages/tests/table/props/filtering/filter-value/client-side.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import {
99
} from './filterFn';
1010

1111
export default test.describe.parallel('Client side filterFunction', () => {
12-
test('Filters correctly', async ({ page, tracingModel }) => {
12+
test('Filters correctly', async ({ page }) => {
1313
await page.waitForInfinite();
1414

15-
const stop = await tracingModel.start();
15+
// const stop = await tracingModel.start();
1616
expect(await getRowCount({ page })).toEqual(employees.length);
1717

1818
const unfiltered = page.getByLabel('unfiltered-count');
@@ -38,6 +38,6 @@ export default test.describe.parallel('Client side filterFunction', () => {
3838
expect(await getRowCount({ page })).toEqual(employees.length);
3939
expect(await unfiltered.textContent()).toEqual(expectedUnfilteredCount);
4040

41-
await stop();
41+
// await stop();
4242
});
4343
});

0 commit comments

Comments
 (0)