Skip to content

Commit c1d27bd

Browse files
committed
Fix test
1 parent 973deb6 commit c1d27bd

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/vscode-textfield/vscode-textfield.test.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ describe('vscode-textfield', () => {
2929
);
3030
expect(el).shadowDom.to.equal(
3131
`
32-
<slot name="content-before"></slot>
33-
<input aria-label="" id="input" type="text">
34-
<slot name="content-after"></slot>
32+
<div class="root">
33+
<slot name="content-before"></slot>
34+
<input aria-label="" id="input" type="text">
35+
<slot name="content-after"></slot>
36+
</div>
3537
`
3638
);
3739
});

0 commit comments

Comments
 (0)