Skip to content

Commit c9bb290

Browse files
authored
Merge pull request #186 from Stremio/fix-tests
Fix npm modiles and tests
2 parents 10ae5b8 + 235b2ff commit c9bb290

File tree

6 files changed

+188
-188
lines changed

6 files changed

+188
-188
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
language: node_js
22
node_js:
3-
- "8"
4-
- "10"
3+
- "12"
4+
- "14"

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"devDependencies": {
4141
"eslint": "^5.13.0",
42-
"stremio-addon-client": "git://github.com/Stremio/stremio-addon-client.git#v1.16.1",
42+
"stremio-addon-client": "https://github.com/Stremio/stremio-addon-client.git#v1.16.1",
4343
"supertest": "^3.3.0",
4444
"tape": "^4.9.0"
4545
}

src/getRouter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function getRouter({ manifest , get }) {
2626
const hasConfig = (manifest.config || []).length
2727

2828
if (hasConfig && !(manifest.behaviorHints || {}).configurable) {
29-
console.warn(`manifest.config is set but manifest.behaviorHints.configurable is disabled, the "Configure" button will not show in the Stremio apps`)
29+
console.warn('manifest.config is set but manifest.behaviorHints.configurable is disabled, the "Configure" button will not show in the Stremio apps')
3030
}
3131

3232
const configPrefix = hasConfig ? '/:config?' : ''

0 commit comments

Comments
 (0)