Skip to content

Commit e46b545

Browse files
committed
style: after lint
1 parent 5fd67ba commit e46b545

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ const test = require('ava')
22
const plugin = require('../lib')
33
const posthtml = require('posthtml')
44

5-
const {join} = require('path')
5+
const path = require('path')
66
const {readFileSync} = require('fs')
77

8-
const fixture = file => readFileSync(join(__dirname, 'fixtures', `${file}.html`), 'utf8')
9-
const expected = file => readFileSync(join(__dirname, 'expected', `${file}.html`), 'utf8')
8+
const fixture = file => readFileSync(path.join(__dirname, 'fixtures', `${file}.html`), 'utf8')
9+
const expected = file => readFileSync(path.join(__dirname, 'expected', `${file}.html`), 'utf8')
1010

1111
const clean = html => html.replace(/[^\S\r\n]+$/gm, '').trim()
1212

0 commit comments

Comments
 (0)