• 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/App.js
1
import React, { Component, Fragment } from 'react';
2
import PropTypes from 'prop-types';
3

4
import LoadingContainer from '../containers/LoadingContainer';
5
import HeaderContainer from '../containers/HeaderContainer';
6
import DetailsContainer from '../containers/DetailsContainer';
7
import MenuContainer from '../containers/MenuContainer';
8
import CoinListContainer from '../containers/CoinListContainer';
9

10
import '../styles/global.scss';
11

12
class App extends Component {
13
  componentDidMount() {
14
    this.props.onAuthChanged();
×
15
  }
16

17
  render() {
18
    return (
×
19
      <Fragment>
20
        <LoadingContainer />
21
        <MenuContainer />
22
        <HeaderContainer />
23
        <DetailsContainer />
24
        <CoinListContainer />
25
      </Fragment>
26
    );
27
  }
28
}
29

30
App.propTypes = {
×
31
  onAuthChanged: PropTypes.func.isRequired,
32
  setInitialState: PropTypes.func.isRequired
33
};
34

35
export default App;
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