Skip to content

Commit

Permalink
Merge pull request #161 from SchoodEIP/modify_form
Browse files Browse the repository at this point in the history
Modify form
  • Loading branch information
Exiels authored Jan 10, 2024
2 parents 4d50ab9 + 7d576fe commit 680a429
Show file tree
Hide file tree
Showing 6 changed files with 800 additions and 5 deletions.
20 changes: 19 additions & 1 deletion src/Users/Teacher/formTeacherPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const FormTeacherPage = () => {
const { id } = useParams()
const [formData, setFormData] = useState({})
const [error, setError] = useState(null)
const [isModify, setIsModify] = useState('false')
const imgImports = [IconFace0, IconFace1, IconFace2]

useEffect(() => {
Expand Down Expand Up @@ -122,6 +123,13 @@ const FormTeacherPage = () => {
.catch(error => setError(error.message))
}

function hasDatePassed (targetDate) {
const currentDate = new Date()
const givenDate = new Date(targetDate)

return givenDate < currentDate
}

const questionnaireUrl = process.env.REACT_APP_BACKEND_URL + '/shared/questionnaire/' + id

fetch(questionnaireUrl, {
Expand All @@ -135,13 +143,18 @@ const FormTeacherPage = () => {
if (data.title) {
setFormData(data)
getStudents(data)
setIsModify(hasDatePassed(data.fromDate))
} else {
setError(data.message)
}
})
.catch(error => setError(error.message))
}, [id])

function handleRedirect () {
window.location.href = '/questionnaire/' + id + '/modify'
}

const showHideAnswer = (index) => {
const answer = document.getElementById('answers-' + index)
const arrow = document.getElementById('extend-retract-' + index)
Expand Down Expand Up @@ -172,7 +185,12 @@ const FormTeacherPage = () => {
</h1>
</div>
<div className='form-content-container'>
<div><p class='bold-underline-text'>Du {moment(formData.fromDate).format('DD/MM/YY')} au {moment(formData.toDate).format('DD/MM/YY')}</p></div>
<div className='div-flex-horizontal'>
<p className='bold-underline-text'>Du {moment(formData.fromDate).format('DD/MM/YY')} au {moment(formData.toDate).format('DD/MM/YY')}</p>
{isModify
? ''
: <button className='button-css questionnaire-btn' onClick={handleRedirect}>Modifier le questionnaire</button>}
</div>
{(!formData | !formData.questions)
? <div>{error}</div>
: formData.questions.map((question, index) => (
Expand Down
Loading

52 comments on commit 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.86% 1163/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.76% 289/337
🟒 Lines 92.27% 1146/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.86% 1163/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.76% 289/337
🟒 Lines 92.27% 1146/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.86% 1163/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.76% 289/337
🟒 Lines 92.27% 1146/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.86% 1163/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.76% 289/337
🟒 Lines 92.27% 1146/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.86% 1163/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.76% 289/337
🟒 Lines 92.27% 1146/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.79% 1162/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.46% 288/337
🟒 Lines 92.19% 1145/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.❔
Category Percentage Covered / Total
🟒 Statements 91.86% 1163/1266
🟒 Branches 80.59% 245/304
🟒 Functions 85.76% 289/337
🟒 Lines 92.27% 1146/1242

Test suite run success

131 tests passing in 40 suites.

Report generated by πŸ§ͺjest coverage report action from 680a429

Please sign in to comment.