Skip to content

Commit 799ebc8

Browse files
committed
Fix linter
1 parent 9e1013d commit 799ebc8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

test/index.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ const browserless = require('..')
99
describe('browserless', () => {
1010
describe('.html', () => {
1111
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-
}))
12+
browserless
13+
.html('https://www.instagram.com/p/BWUDBntl3_Z/')
14+
.then(html => {
15+
writeFileSync(path.resolve('test/example.html'), html, 'utf8')
16+
should(html).be.eql(readFileSync('test/example.html', 'utf8'))
17+
}))
1618
})
1719

1820
describe('.screenshot', () => {

0 commit comments

Comments
 (0)