Skip to content

Commit 66d6ddc

Browse files
authored
DataGrid - fix imports in m_,master_detail.integration.test.ts (DevExpress#30675)
1 parent bca75fd commit 66d6ddc

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

packages/devextreme/js/__internal/grids/grid_core/master_detail/m_master_detail.integration.test.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import { afterEach } from 'node:test';
2-
3-
import { describe, expect, it } from '@jest/globals';
4-
import $ from 'jquery';
1+
import {
2+
afterEach, describe, expect, it,
3+
} from '@jest/globals';
4+
import type { dxElementWrapper } from '@js/core/renderer';
5+
import $ from '@js/core/renderer';
56

67
import type { Properties as DataGridProperties } from '../../../../ui/data_grid';
78
import DataGrid from '../../../../ui/data_grid';
@@ -16,7 +17,7 @@ const GRID_CONTAINER_ID = 'gridContainer';
1617

1718
const createDataGrid = async (
1819
options: DataGridProperties = {},
19-
): Promise<{ $container: JQuery; instance: DataGrid }> => new Promise((resolve) => {
20+
): Promise<{ $container: dxElementWrapper; instance: DataGrid }> => new Promise((resolve) => {
2021
const $container = $('<div>')
2122
.attr('id', GRID_CONTAINER_ID)
2223
.appendTo(document.body);

0 commit comments

Comments
 (0)