Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JCQuintas committed Jan 8, 2025
1 parent b8f50d0 commit fddecca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/x-charts/src/ChartsLabel/ChartsLabel.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import * as React from 'react';
import { createRenderer } from '@mui/internal-test-utils/createRenderer';
import { describeConformance } from 'test/utils/describeConformance';
import { ChartsLabel, labelClasses } from '@mui/x-charts/ChartsLabel';
import { ChartsLabel } from '@mui/x-charts/ChartsLabel/ChartsLabel';
import { labelClasses } from '@mui/x-charts/ChartsLabel';
import { createTheme, ThemeProvider } from '@mui/material/styles';

describe('<ChartsLabel />', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import * as React from 'react';
import { createRenderer } from '@mui/internal-test-utils/createRenderer';
import { describeConformance } from 'test/utils/describeConformance';
import { ChartsLabelGradient, labelGradientClasses } from '@mui/x-charts/ChartsLabel';
import { createTheme, ThemeProvider } from '@mui/material/styles';
import { ChartsLabelGradient } from '@mui/x-charts/ChartsLabel/ChartsLabelGradient';
import { labelGradientClasses } from '@mui/x-charts/ChartsLabel';

describe('<ChartsLabelGradient />', () => {
const { render } = createRenderer();
Expand Down
3 changes: 2 additions & 1 deletion packages/x-charts/src/ChartsLabel/ChartsLabelMark.test.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import * as React from 'react';
import { createRenderer } from '@mui/internal-test-utils/createRenderer';
import { describeConformance } from 'test/utils/describeConformance';
import { ChartsLabelMark, labelMarkClasses } from '@mui/x-charts/ChartsLabel';
import { createTheme, ThemeProvider } from '@mui/material/styles';
import { ChartsLabelMark } from '@mui/x-charts/ChartsLabel/ChartsLabelMark';
import { labelMarkClasses } from '@mui/x-charts/ChartsLabel';

describe('<ChartsLabelMark />', () => {
const { render } = createRenderer();
Expand Down

0 comments on commit fddecca

Please sign in to comment.