mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
fix build issue
This commit is contained in:
parent
9f16ec97f1
commit
ef0607aceb
4 changed files with 4 additions and 5 deletions
|
|
@ -15,8 +15,7 @@ describe('MultipleChoiceQuestion', () => {
|
|||
globalFeedback="feedback"
|
||||
questionTitle="Test Question"
|
||||
choices={choices}
|
||||
handleOnSubmitAnswer={mockHandleOnSubmitAnswer}
|
||||
/>
|
||||
handleOnSubmitAnswer={mockHandleOnSubmitAnswer} questionContent={''} />
|
||||
);
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ describe('NumericalQuestion Component', () => {
|
|||
};
|
||||
|
||||
beforeEach(() => {
|
||||
render(<NumericalQuestion {...sampleProps} />);
|
||||
render(<NumericalQuestion questionContent={''} {...sampleProps} />);
|
||||
});
|
||||
|
||||
it('renders correctly', () => {
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ describe('ShortAnswerQuestion Component', () => {
|
|||
};
|
||||
|
||||
beforeEach(() => {
|
||||
render(<ShortAnswerQuestion {...sampleProps} />);
|
||||
render(<ShortAnswerQuestion questionContent={''} {...sampleProps} />);
|
||||
});
|
||||
|
||||
it('renders correctly', () => {
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ describe('TrueFalseQuestion Component', () => {
|
|||
};
|
||||
|
||||
beforeEach(() => {
|
||||
render(<TrueFalseQuestion {...sampleProps} />);
|
||||
render(<TrueFalseQuestion questionContent={''} {...sampleProps} />);
|
||||
});
|
||||
|
||||
it('renders correctly', () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue