Import react in tests classes

This commit is contained in:
JubaAzul 2025-01-13 19:47:37 -05:00
parent f201305064
commit b834c8f06f
4 changed files with 4 additions and 0 deletions

View file

@ -1,4 +1,5 @@
import { render } from '@testing-library/react';
import '@testing-library/jest-dom';
import { MultipleChoice } from '../../../../components/GiftTemplate/templates';
import { TemplateOptions, MultipleChoice as MultipleChoiceType } from '../../../../components/GiftTemplate/templates/types';

View file

@ -1,4 +1,5 @@
import { render } from '@testing-library/react';
import '@testing-library/jest-dom';
import Numerical from '../../../../components/GiftTemplate/templates/Numerical';
import { TemplateOptions, Numerical as NumericalType } from '../../../../components/GiftTemplate/templates/types';

View file

@ -1,4 +1,5 @@
import { render } from '@testing-library/react';
import '@testing-library/jest-dom';
import ShortAnswer from '../../../../components/GiftTemplate/templates/ShortAnswer';
import { TemplateOptions, ShortAnswer as ShortAnswerType } from '../../../../components/GiftTemplate/templates/types';

View file

@ -1,4 +1,5 @@
import { render } from '@testing-library/react';
import '@testing-library/jest-dom';
import TrueFalse from '../../../../components/GiftTemplate/templates';
import { TemplateOptions, TrueFalse as TrueFalseType } from '../../../../components/GiftTemplate/templates/types';