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

DamianMullins / Coinsly / #229

pending completion
#229

push

web-flow
Bump coveralls from 3.1.0 to 3.1.1

Bumps [coveralls](https://github.com/nickmerwin/node-coveralls) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/nickmerwin/node-coveralls/releases)
- [Commits](https://github.com/nickmerwin/node-coveralls/compare/v3.1.0...3.1.1)

---
updated-dependencies:
- dependency-name: coveralls
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

5 of 78 branches covered (6.41%)

Branch coverage included in aggregate %.

11 of 266 relevant lines covered (4.14%)

0.15 hits per line

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

0.0
/src/components/Statuses.js
1
import React from 'react';
2
import PropTypes from 'prop-types';
3

4
import styles from '../styles/Filters.module.scss';
5

6
const Statuses = ({ statuses, status, updateStatus }) => (
×
7
  <div className={styles.filter}>
×
8
    {statuses.map(name => (
9
      <label
×
10
        key={name}
11
        className={`${styles.label} ${
12
          status === name ? styles.label__selected : ''
×
13
        }`}
14
      >
15
        {name}
16

17
        <input
18
          type="radio"
19
          name="filter"
20
          value={name}
21
          checked={status === name}
22
          onChange={updateStatus}
23
          style={{ display: 'none' }}
24
        />
25
      </label>
26
    ))}
27
  </div>
28
);
29

30
Statuses.propTypes = {
×
31
  statuses: PropTypes.array.isRequired,
32
  status: PropTypes.string.isRequired,
33
  updateStatus: PropTypes.func.isRequired
34
};
35

36
export default Statuses;
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