Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhauhau committed Jun 16, 2021
1 parent d28f226 commit 0622e23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@ export default {
indeterminate: true
},

html: `
<input type='checkbox'>
`,
html: '<input type=\'checkbox\'>',

// somehow ssr will render indeterminate=""
// the hydrated html will still contain that attribute
ssrHtml: `<input type='checkbox' indeterminate="">`,
ssrHtml: '<input type=\'checkbox\' indeterminate="">',

test({ assert, component, target }) {
const input = target.querySelector('input');
Expand Down
2 changes: 0 additions & 2 deletions test/runtime/samples/component-namespaced/_config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import * as path from 'path';

export default {
props: {
a: 1
Expand Down

0 comments on commit 0622e23

Please sign in to comment.