• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

EcrituresNumeriques / stylo / 14090633575

26 Mar 2025 06:19PM UTC coverage: 31.811% (+0.01%) from 31.801%
14090633575

push

github

web-flow
chore: remplace feather par lucide (plus d'icĂ´nes) (#1374)

470 of 703 branches covered (66.86%)

Branch coverage included in aggregate %.

4 of 47 new or added lines in 46 files covered. (8.51%)

2 existing lines in 1 file now uncovered.

4483 of 14867 relevant lines covered (30.15%)

2.26 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/front/src/components/header/UserMenuLink.jsx
1
import React from 'react'
×
NEW
2
import { User } from 'lucide-react'
×
UNCOV
3
import PropTypes from 'prop-types'
×
4

5
import WorkspaceLabel from '../workspace/WorkspaceLabel.jsx'
×
6

7
import styles from './UserMenuLink.module.scss'
×
8

UNCOV
9
export default function UserMenuLink({ username, activeWorkspace }) {
×
10
  return (
×
11
    <>
×
12
      <div className={styles.container}>
×
13
        <User className={styles.icon} size={20} />
×
14
        <div className={styles.username}>{username}</div>
×
15
        {activeWorkspace && (
×
16
          <WorkspaceLabel
×
17
            className={styles.workspaceLabel}
×
18
            color={activeWorkspace.color}
×
19
            name={activeWorkspace.name}
×
20
          />
×
21
        )}
22
      </div>
×
23
    </>
×
24
  )
25
}
×
26

27
UserMenuLink.propTypes = {
×
28
  username: PropTypes.string.isRequired,
×
29
  activeWorkspace: PropTypes.shape({
×
30
    color: PropTypes.string.isRequired,
×
31
    name: PropTypes.string.isRequired,
×
32
  }),
×
33
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc