@@ -169,8 +169,8 @@ tester.run('no-empty-component-block', rule, {
169
169
]
170
170
} ,
171
171
{
172
- code : '<template></template> <script></script> <style></style>' ,
173
- output : ' ' ,
172
+ code : '<template></template><script></script><style></style>' ,
173
+ output : '' ,
174
174
options : [ { autofix : true } ] ,
175
175
errors : [
176
176
{
@@ -185,8 +185,8 @@ tester.run('no-empty-component-block', rule, {
185
185
]
186
186
} ,
187
187
{
188
- code : '<template /> <script /> <style />' ,
189
- output : ' ' ,
188
+ code : '<template /><script /><style />' ,
189
+ output : '' ,
190
190
options : [ { autofix : true } ] ,
191
191
errors : [
192
192
{
@@ -201,8 +201,8 @@ tester.run('no-empty-component-block', rule, {
201
201
]
202
202
} ,
203
203
{
204
- code : '<template src="" /> <script src="" /> <style src="" />' ,
205
- output : ' ' ,
204
+ code : '<template src="" /><script src="" /><style src="" />' ,
205
+ output : '' ,
206
206
options : [ { autofix : true } ] ,
207
207
errors : [
208
208
{
@@ -217,8 +217,8 @@ tester.run('no-empty-component-block', rule, {
217
217
]
218
218
} ,
219
219
{
220
- code : '<template><p></p></template> <script src="" /> <style src="" />' ,
221
- output : '<template><p></p></template> ' ,
220
+ code : '<template><p></p></template><script src="" /><style src="" />' ,
221
+ output : '<template><p></p></template>' ,
222
222
options : [ { autofix : true } ] ,
223
223
errors : [
224
224
{
0 commit comments