Skip to content

Commit

Permalink
fix tests and release version minor
Browse files Browse the repository at this point in the history
  • Loading branch information
radubrehar committed Aug 26, 2024
1 parent 0fb1a26 commit 583bf44
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/src/pages/tests/table/utils/MultiRowSelector.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export default test.describe.parallel('MultiRowSelector', () => {

const selector = new MultiRowSelector({
getIdForIndex: (index) => `${index}`,
isRowDisabledAt: (_index) => false,
});
selector.rowSelectionState = rowSelection;

Expand Down Expand Up @@ -91,6 +92,7 @@ export default test.describe.parallel('MultiRowSelector', () => {

const selector = new MultiRowSelector({
getIdForIndex: (index) => `${index}`,
isRowDisabledAt: (_index) => false,
});
selector.rowSelectionState = rowSelection;

Expand Down Expand Up @@ -143,6 +145,7 @@ export default test.describe.parallel('MultiRowSelector', () => {

const selector = new MultiRowSelector({
getIdForIndex: (index) => `${index}`,
isRowDisabledAt: (_index) => false,
});

selector.rowSelectionState = rowSelection;
Expand Down Expand Up @@ -211,6 +214,7 @@ export default test.describe.parallel('MultiRowSelector', () => {

const selector = new MultiRowSelector({
getIdForIndex: (index) => `${index}`,
isRowDisabledAt: (_index) => false,
});

selector.rowSelectionState = rowSelection;
Expand Down Expand Up @@ -270,6 +274,7 @@ export default test.describe.parallel('MultiRowSelector', () => {

const selector = new MultiRowSelector({
getIdForIndex: (index) => `${index}`,
isRowDisabledAt: (_index) => false,
});
selector.rowSelectionState = rowSelection;

Expand Down Expand Up @@ -343,6 +348,7 @@ export default test.describe.parallel('MultiRowSelector', () => {

const selector = new MultiRowSelector({
getIdForIndex: (index) => `${index}`,
isRowDisabledAt: (_index) => false,
});

selector.rowSelectionState = rowSelection;
Expand Down

0 comments on commit 583bf44

Please sign in to comment.