Skip to content

Commit 44790af

Browse files
committed
issue-1147: Fix linting
1 parent 4aa9f79 commit 44790af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: packages/test-utils/src/wrapper.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @flow
22

33
import Vue from 'vue'
4-
import pretty from 'pretty';
4+
import pretty from 'pretty'
55
import getSelector from './get-selector'
66
import { REF_SELECTOR, FUNCTIONAL_OPTIONS, VUE_VERSION } from 'shared/consts'
77
import config from './config'
@@ -224,7 +224,7 @@ export default class Wrapper implements BaseWrapper {
224224
*/
225225
html(options?: HtmlOptions): string {
226226
if (options && options.prettyPrint) {
227-
return pretty(this.element.outerHTML);
227+
return pretty(this.element.outerHTML)
228228
}
229229
return this.element.outerHTML
230230
}

0 commit comments

Comments
 (0)