Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Dec 25, 2025. It is now read-only.

Commit fd17958

Browse files
committed
added 2nd test for no semi colon
1 parent 56262ca commit fd17958

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

tests/test.html

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,11 @@
132132
console.log("Hello " + name + "!")
133133
}`;
134134

135+
const $body = $('body');
136+
137+
$jQueryTest.appendTo($body);
138+
139+
135140
// test jQuery
136141
const $jQueryTest = $(`
137142
<div>
@@ -142,9 +147,16 @@ <h1>Test Header</h1>
142147
</div>
143148
`);
144149

145-
const $body = $('body');
150+
const $jQueryTest2 = $(`
151+
<div>
152+
<h1>Test Header 2</h1>
153+
<p>${test}</p>
154+
<p>${deep.test}</p>
155+
156+
</div>
157+
`).appendTo($body);
158+
146159

147-
$jQueryTest.appendTo($body);
148160

149161

150162
</script>

0 commit comments

Comments
 (0)