Skip to content

Commit bcabf32

Browse files
committed
fix: disable escaping for this test
1 parent f265b6f commit bcabf32

File tree

1 file changed

+2
-3
lines changed
  • packages/metascraper-soundcloud/test

1 file changed

+2
-3
lines changed

packages/metascraper-soundcloud/test/index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ const readFile = promisify(fs.readFile)
2424
describe('metascraper-soundcloud', () => {
2525
it('song', async () => {
2626
const html = await readFile(resolve(__dirname, 'fixtures/song.html'))
27-
const url =
28-
'https://soundcloud.com/beautybrainsp/beauty-brain-swag-bandicoot'
27+
const url = 'https://soundcloud.com/beautybrainsp/beauty-brain-swag-bandicoot'
2928

30-
const metadata = await metascraper({ html, url })
29+
const metadata = await metascraper({ html, url, escape: false })
3130
snapshot(metadata)
3231
})
3332
})

0 commit comments

Comments
 (0)