Skip to content

Commit

Permalink
release version patch
Browse files Browse the repository at this point in the history
  • Loading branch information
radubrehar committed Oct 5, 2023
1 parent eec311f commit 8ad26fa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default test.describe.parallel('Inline Edit', () => {

await editModel.confirmEdit(cellEditable1);

await page.waitForTimeout(20);
await page.waitForTimeout(50);

expect(await editModel.isEditorOpen(cellEditable1)).toBe(false);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ const columns: InfiniteTablePropColumns<Developer> = {
valueFormatter: ({ value }) => `$ ${value}`,
getValueToPersist: ({ value }) => {
if (value === '234') {
debugger;
}
return parseInt(value, 10) * 2;
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export default test.describe.parallel('Inline Edit', () => {
await editModel.getCellEditor(cellEditable1).fill('234');
await editModel.confirmEdit(cellEditable1);

await page.waitForTimeout(50);
expect(await editModel.isEditorOpen(cellEditable1)).toBe(false);
expect(await rowModel.getTextForCell(cellEditable1)).toBe('$ 468');
});
Expand Down

0 comments on commit 8ad26fa

Please sign in to comment.