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 9e1013d commit 799ebc8Copy full SHA for 799ebc8
test/index.js
@@ -9,10 +9,12 @@ const browserless = require('..')
9
describe('browserless', () => {
10
describe('.html', () => {
11
it('get full HTML from a link', () =>
12
- browserless.html('https://www.instagram.com/p/BWUDBntl3_Z/').then(html => {
13
- writeFileSync(path.resolve('test/example.html'), html, 'utf8')
14
- should(html).be.eql(readFileSync('test/example.html', 'utf8'))
15
- }))
+ browserless
+ .html('https://www.instagram.com/p/BWUDBntl3_Z/')
+ .then(html => {
+ writeFileSync(path.resolve('test/example.html'), html, 'utf8')
16
+ should(html).be.eql(readFileSync('test/example.html', 'utf8'))
17
+ }))
18
})
19
20
describe('.screenshot', () => {
0 commit comments