Skip to content

Commit 78b7fc7

Browse files
committed
test: remove only
1 parent ccbfd69 commit 78b7fc7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/test-core.spec.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,9 @@ test('should parse with source locations', t => {
294294
t.deepEqual(tree, expected);
295295
});
296296

297-
test.only('should parse with input in button', t => {
297+
test('should parse with input in button', t => {
298298
const html = '<button >Hello <input type="file" ng-hide="true" />PostHtml</button>';
299-
const tree = parser(html);
299+
const tree = parser(html, { xmlMode: true });
300300
const expected = [
301301
{
302302
tag: 'button',
@@ -306,13 +306,12 @@ test.only('should parse with input in button', t => {
306306
tag: 'input',
307307
attrs: {
308308
type: 'file',
309-
'ng-hide': true
309+
'ng-hide': 'true'
310310
}
311311
},
312312
'PostHtml'
313313
]
314314
}
315315
];
316-
console.log({ tree });
317316
t.deepEqual(tree, expected);
318317
});

0 commit comments

Comments
 (0)