Skip to content

Commit

Permalink
Merge 5464966 into ccf657e
Browse files Browse the repository at this point in the history
  • Loading branch information
vhf committed May 25, 2019
2 parents ccf657e + 5464966 commit 3336f3c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ cache:
node_js:
- '8'
- '10'
- '12'

env:
matrix:
Expand All @@ -28,6 +29,8 @@ before_script:

after_success:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js

before_deploy:
- npm run build-demo

deploy:
Expand Down
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"clone": "^2.1.1",
"core-js": "^2.6.8",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"dedent": "^0.7.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/remark-images-download/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,8 @@ describe('mock server tests', () => {
const render = renderFactory({httpRequestTimeout: 500})

return render(file).then(vfile => {
expect(firstMsg(vfile)).toBe(
'getaddrinfo ENOTFOUND doesnotexist-kqwtkk78.com doesnotexist-kqwtkk78.com:80')
expect(firstMsg(vfile)).toContain(
'getaddrinfo ENOTFOUND doesnotexist-kqwtkk78.com')
expect(vfile.contents).toBe(html)
})
})
Expand Down

0 comments on commit 3336f3c

Please sign in to comment.