Skip to content

Commit

Permalink
fix(coverage): fix coverage for binCases (#231)
Browse files Browse the repository at this point in the history
fix prettier for bin and test
fix lint for windows users
improve reporting for CI
  • Loading branch information
sokra authored and evenstensberg committed Jan 2, 2018
1 parent c2d832a commit 7bd9a33
Show file tree
Hide file tree
Showing 9 changed files with 617 additions and 436 deletions.
6 changes: 3 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ test_script:
- npm --version
- yarn --version
- which yarn
- yarn prepare
- yarn lint
- yarn test:ci
- yarn appveyor:prepare
- yarn appveyor:lint
- yarn appveyor:test

cache:
- node_modules -> appveyor.yml,package.json,yarn.lock
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 233

[*.js]
end_of_line = lf

[*.json]
indent_style = space
indent_size = 2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ yarn-error.log

# Jest Coverage
/coverage
/.nyc_output

# Distribution Build
dist
Expand Down
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,5 @@ before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start

after_success:
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"

script: npm run travis:$JOB_PART
script:
- npm run travis:$JOB_PART
Loading

0 comments on commit 7bd9a33

Please sign in to comment.