We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f265b6f commit bcabf32Copy full SHA for bcabf32
packages/metascraper-soundcloud/test/index.js
@@ -24,10 +24,9 @@ const readFile = promisify(fs.readFile)
24
describe('metascraper-soundcloud', () => {
25
it('song', async () => {
26
const html = await readFile(resolve(__dirname, 'fixtures/song.html'))
27
- const url =
28
- 'https://soundcloud.com/beautybrainsp/beauty-brain-swag-bandicoot'
+ const url = 'https://soundcloud.com/beautybrainsp/beauty-brain-swag-bandicoot'
29
30
- const metadata = await metascraper({ html, url })
+ const metadata = await metascraper({ html, url, escape: false })
31
snapshot(metadata)
32
})
33
0 commit comments