Skip to content

Commit 3049308

Browse files
committed
test: remove redundant test
1 parent 38f4906 commit 3049308

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

tests/lib/rules/no-negated-v-if-condition.js

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -145,30 +145,6 @@ tester.run('no-negated-v-if-condition', rule, {
145145
}
146146
],
147147
invalid: [
148-
{
149-
filename: 'test.vue',
150-
code: `
151-
<template>
152-
<div v-if="!foo">Content</div>
153-
<span v-else>Alternative</span>
154-
</template>
155-
`,
156-
output: `
157-
<template>
158-
<span v-if="foo">Alternative</span>
159-
<div v-else>Content</div>
160-
</template>
161-
`,
162-
errors: [
163-
{
164-
messageId: 'negatedCondition',
165-
line: 3,
166-
column: 22,
167-
endLine: 3,
168-
endColumn: 26
169-
}
170-
]
171-
},
172148
{
173149
filename: 'test.vue',
174150
code: `

0 commit comments

Comments
 (0)