We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b14486 commit f7f6435Copy full SHA for f7f6435
packages/html-reporter/src/chip.css
@@ -27,6 +27,11 @@
27
white-space: nowrap;
28
overflow: hidden;
29
text-overflow: ellipsis;
30
+ user-select: none;
31
+}
32
+
33
+.chip-header-allow-selection {
34
+ user-select: text;
35
}
36
37
.chip-header.expanded-false {
packages/html-reporter/src/testFileView.tsx
@@ -37,7 +37,7 @@ export const TestFileView: React.FC<React.PropsWithChildren<{
expanded={isFileExpanded(file.fileId)}
38
noInsets={true}
39
setExpanded={(expanded => setFileExpanded(file.fileId, expanded))}
40
- header={<span>
+ header={<span className='chip-header-allow-selection'>
41
{file.fileName}
42
</span>}>
43
{file.tests.map(test =>
0 commit comments