Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Feb 11, 2024
1 parent ac9fc4a commit f0700cf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
3 changes: 1 addition & 2 deletions packages/metascraper/test/integration/eweek/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ const metascraper = require('../../..')([
require('metascraper-readability')()
])

const url =
'http://www.eweek.com/developer/microsoft-hackerrank-launch-bing-search-tool-for-programmers.html'
const url = 'https://www.eweek.com/artificial-intelligence/robotics-companies/'

test('eweek', async t => {
const html = await readFile(resolve(__dirname, 'input.html'))
Expand Down
2 changes: 1 addition & 1 deletion packages/metascraper/test/integration/fortune/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const metascraper = require('../../..')([
require('metascraper-readability')()
])

const url = 'http://fortune.com/2015/10/05/hackerrank-recruiting-tool'
const url = 'https://fortune.com/2015/10/05/hackerrank-recruiting-tool/'

test('fortune', async t => {
const html = await readFile(resolve(__dirname, 'input.html'))
Expand Down
3 changes: 1 addition & 2 deletions packages/metascraper/test/integration/geek-time/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ const metascraper = require('../../..')([
require('metascraper-readability')()
])

const url =
'http://www.geektime.com/2016/04/21/fraud-solutions-forter-secures-payment-of-32m-in-series-c'
const url = 'https://www.geektime.com/gaming-market-2023/'

test('geek-time', async t => {
const html = await readFile(resolve(__dirname, 'input.html'))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const metascraper = require('../../..')([
])

const url =
'http://jewishbusinessnews.com/2016/01/20/israeli-startup-jfrog-raises-50-million-in-c-round'
'https://jewishbusinessnews.com/2016/01/20/israeli-startup-jfrog-raises-50-million-in-c-round/'

test('jewish-business-news', async t => {
const html = await readFile(resolve(__dirname, 'input.html'))
Expand Down
2 changes: 1 addition & 1 deletion packages/metascraper/test/integration/mac-rumors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const metascraper = require('../../..')([
])

const url =
'http://www.macrumors.com/2016/05/24/apple-siri-sdk-amazon-echo-competitor'
'https://www.macrumors.com/2016/05/24/apple-siri-sdk-amazon-echo-competitor/'

test('mac-rumors', async t => {
const html = await readFile(resolve(__dirname, 'input.html'))
Expand Down
2 changes: 1 addition & 1 deletion packages/metascraper/test/integration/the-verge/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const metascraper = require('../../..')([
])

const url =
'http://www.theverge.com/2016/5/24/11763836/apple-siri-speaker-amazon-echo-alexa-google-home-ai'
'https://www.theverge.com/2016/5/24/11763836/apple-siri-speaker-amazon-echo-alexa-google-home-ai'

test('the-verge', async t => {
const html = await readFile(resolve(__dirname, 'input.html'))
Expand Down

0 comments on commit f0700cf

Please sign in to comment.