Skip to content

Commit

Permalink
Merge branch 'main' into tests/expendableGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
jonenst committed Dec 18, 2024
2 parents 4062971 + 67093c0 commit 97785e1
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/components/customAGGrid/tests/customAggrid.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Copyright (c) 2024, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import { ColDef, GridOptions } from 'ag-grid-community';
import { CustomAGGrid } from '../customAggrid';
import { RenderBuilder } from '../../../tests/testsUtils.test';

const RenderBuilderInstance = new RenderBuilder().withTrad().withTheme();

const defaultColDef: ColDef = { flex: 1 };

const columnDefs: ColDef[] = [
{ headerName: 'Make', field: 'make' },
{ headerName: 'Model', field: 'model' },
{ headerName: 'Price', field: 'price' },
];

const rowData = [
{ make: 'Toyota', model: 'Celica', price: 35000 },
{ make: 'Ford', model: 'Mondeo', price: 32000 },
{ make: 'Porsche', model: 'Boxster', price: 72000 },
];

const gridOptions: GridOptions = {
defaultColDef,
columnDefs,
rowData,
};

describe('CustomAGGrid', () => {
it('renders without crashing', () => {
RenderBuilderInstance.render(<CustomAGGrid gridOptions={gridOptions} />);
});
});

0 comments on commit 97785e1

Please sign in to comment.