Skip to content

Commit 7bd9a33

Browse files
sokraevenstensberg
authored andcommitted
fix(coverage): fix coverage for binCases (#231)
fix prettier for bin and test fix lint for windows users improve reporting for CI
1 parent c2d832a commit 7bd9a33

File tree

9 files changed

+617
-436
lines changed

9 files changed

+617
-436
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ test_script:
2121
- npm --version
2222
- yarn --version
2323
- which yarn
24-
- yarn prepare
25-
- yarn lint
26-
- yarn test:ci
24+
- yarn appveyor:prepare
25+
- yarn appveyor:lint
26+
- yarn appveyor:test
2727

2828
cache:
2929
- node_modules -> appveyor.yml,package.json,yarn.lock

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ trim_trailing_whitespace = true
88
insert_final_newline = true
99
max_line_length = 233
1010

11+
[*.js]
12+
end_of_line = lf
13+
1114
[*.json]
1215
indent_style = space
1316
indent_size = 2

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ yarn-error.log
1515

1616
# Jest Coverage
1717
/coverage
18+
/.nyc_output
1819

1920
# Distribution Build
2021
dist

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,5 @@ before_script:
3030
- export DISPLAY=:99.0
3131
- sh -e /etc/init.d/xvfb start
3232

33-
after_success:
34-
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
35-
36-
script: npm run travis:$JOB_PART
33+
script:
34+
- npm run travis:$JOB_PART

0 commit comments

Comments
 (0)