stable

Clone or download

Read-only

Add justification comments in the test plan export

HTML comments are stripped to text because it's the only thing we can do right now. Putting HTML in a Excel cell means converting it to the rich text format which is not a trivial task as it requires the capability to interpret CSS and HTML and is not supported by the xlsx library. Part of story #15096: export a report of tests for a milestone Change-Id: I487aaa544fcc6891d48d5614afb0ccb2b7578511

Modified Files

Name
M plugins/testplan/scripts/test-plan/po/fr_FR.po +6 −1 Go to diff View file
M plugins/testplan/scripts/test-plan/src/components/BacklogItems/ExportButton.test.ts +35 −0 Go to diff View file
M plugins/testplan/scripts/test-plan/src/components/BacklogItems/ExportButton.vue +16 −13 Go to diff View file
A plugins/testplan/scripts/test-plan/src/helpers/Export/artifacts-retriever.test.ts +42 −0 Go to diff View file
A plugins/testplan/scripts/test-plan/src/helpers/Export/artifacts-retriever.ts +84 −0 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/download-export-document.test.ts +3 −3 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/download-export-document.ts +3 −3 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/justifications-builder.test.ts +119 −3 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/justifications-builder.ts +72 −23 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/report-cells.test.ts +7 −1 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/report-cells.ts +7 −1 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/report-creator.test.ts +3 −3 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/report-creator.ts +3 −3 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/transform-report-to-xlsx-sheet.test.ts +9 −3 Go to diff View file
M plugins/testplan/scripts/test-plan/src/helpers/Export/transform-report-to-xlsx-sheet.ts +7 −0 Go to diff View file