Skip to content

Commit

Permalink
issue-1147: Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
addisonssense committed May 9, 2019
1 parent 4aa9f79 commit 44790af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/test-utils/src/wrapper.js
@@ -1,7 +1,7 @@
// @flow

import Vue from 'vue'
import pretty from 'pretty';
import pretty from 'pretty'
import getSelector from './get-selector'
import { REF_SELECTOR, FUNCTIONAL_OPTIONS, VUE_VERSION } from 'shared/consts'
import config from './config'
Expand Down Expand Up @@ -224,7 +224,7 @@ export default class Wrapper implements BaseWrapper {
*/
html(options?: HtmlOptions): string {
if (options && options.prettyPrint) {
return pretty(this.element.outerHTML);
return pretty(this.element.outerHTML)
}
return this.element.outerHTML
}
Expand Down

0 comments on commit 44790af

Please sign in to comment.