Skip to content

Commit c608099

Browse files
committed
chore: fix ESLint errors
1 parent 57e8809 commit c608099

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ module.exports = {
1515
],
1616
rules: {
1717
'import/default': 'off',
18+
'jest/prefer-mock-promise-shorthand': 'off',
1819
},
1920
},
2021
],

src/__tests__/transformers/GIPHY.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,15 @@ cases(
3838
valid: false,
3939
},
4040
"non-GIPHY url ending with 'giphy.com' and having '/gifs/' in the url": {
41-
url:
42-
'https://this-is-not-giphy.com/gifs/howtogiphygifs-how-to-XatG8bioEwwVO',
41+
url: 'https://this-is-not-giphy.com/gifs/howtogiphygifs-how-to-XatG8bioEwwVO',
4342
valid: false,
4443
},
4544
homepage: {
4645
url: 'https://giphy.com',
4746
valid: false,
4847
},
4948
'video url': {
50-
url:
51-
'https://giphy.com/videos/blesstheharts-wayne-bless-the-harts-ciwJyqlgAYkvguS2Nw',
49+
url: 'https://giphy.com/videos/blesstheharts-wayne-bless-the-harts-ciwJyqlgAYkvguS2Nw',
5250
valid: false,
5351
},
5452
'gif url': {

0 commit comments

Comments
 (0)