Skip to content

Commit

Permalink
Edit test
Browse files Browse the repository at this point in the history
  • Loading branch information
tongsonbarbs committed Jul 24, 2024
1 parent d2dd91e commit 734e2b7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions e2e/testcafe-devextreme/tests/dataGrid/tagBox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { createWidget } from '../../helpers/createWidget';
fixture.disablePageReloads`Tagbox Columns`.page(
url(__dirname, '../container.html'),
);

// T1228720
test('Datagrid tagbox column should not look broken', async (t) => {
const dataGrid = new DataGrid('#container');
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
Expand All @@ -28,8 +28,6 @@ test('Datagrid tagbox column should not look broken', async (t) => {
allowColumnResizing: true,
dataSource: [
{ id: 1, items: [1, 2, 3, 4, 5] },
{ id: 2, items: [4, 8] },
{ id: 3, items: [3, 6, 9] },
],
columns: ['id', {
dataField: 'items',
Expand Down Expand Up @@ -66,7 +64,7 @@ test('Datagrid tagbox column should not look broken', async (t) => {
(itemId) => options.column.lookup!.calculateCellValue!(itemId),
);
const text = vals.join(', ');
// @ts-expect-error test
// @ts-expect-error text
container.text(text || noBreakSpace).attr('title', text);
},
}],
Expand Down

0 comments on commit 734e2b7

Please sign in to comment.