Skip to content

Commit b7d6389

Browse files
committed
fix: add missing commas in IterableHtmlInAppContent test cases for consistency
1 parent 8e5dbac commit b7d6389

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

src/inApp/classes/IterableHtmlInAppContent.test.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ describe('IterableHtmlInAppContent', () => {
107107
top: 10,
108108
left: 20,
109109
bottom: 30,
110-
right: 40
110+
right: 40,
111111
},
112-
html: '<div>Hello World</div>'
112+
html: '<div>Hello World</div>',
113113
};
114114

115115
// WHEN creating from dictionary
@@ -131,9 +131,9 @@ describe('IterableHtmlInAppContent', () => {
131131
top: 0,
132132
left: 0,
133133
bottom: 0,
134-
right: 0
134+
right: 0,
135135
},
136-
html: ''
136+
html: '',
137137
};
138138

139139
// WHEN creating from dictionary
@@ -155,7 +155,7 @@ describe('IterableHtmlInAppContent', () => {
155155
top: 5,
156156
left: 10,
157157
bottom: 15,
158-
right: 20
158+
right: 20,
159159
},
160160
html: `
161161
<html>
@@ -167,7 +167,7 @@ describe('IterableHtmlInAppContent', () => {
167167
</div>
168168
</body>
169169
</html>
170-
`
170+
`,
171171
};
172172

173173
// WHEN creating from dictionary
@@ -189,9 +189,9 @@ describe('IterableHtmlInAppContent', () => {
189189
top: -5,
190190
left: -10,
191191
bottom: -15,
192-
right: -20
192+
right: -20,
193193
},
194-
html: '<div>Negative insets</div>'
194+
html: '<div>Negative insets</div>',
195195
};
196196

197197
// WHEN creating from dictionary
@@ -213,9 +213,9 @@ describe('IterableHtmlInAppContent', () => {
213213
top: 1.5,
214214
left: 2.7,
215215
bottom: 3.9,
216-
right: 4.1
216+
right: 4.1,
217217
},
218-
html: '<div>Decimal insets</div>'
218+
html: '<div>Decimal insets</div>',
219219
};
220220

221221
// WHEN creating from dictionary
@@ -358,9 +358,9 @@ describe('IterableHtmlInAppContent', () => {
358358
top: NaN,
359359
left: NaN,
360360
bottom: NaN,
361-
right: NaN
361+
right: NaN,
362362
},
363-
html: '<div>NaN insets</div>'
363+
html: '<div>NaN insets</div>',
364364
};
365365

366366
// WHEN creating from dictionary
@@ -382,9 +382,9 @@ describe('IterableHtmlInAppContent', () => {
382382
top: Infinity,
383383
left: -Infinity,
384384
bottom: Infinity,
385-
right: -Infinity
385+
right: -Infinity,
386386
},
387-
html: '<div>Infinity insets</div>'
387+
html: '<div>Infinity insets</div>',
388388
};
389389

390390
// WHEN creating from dictionary

0 commit comments

Comments
 (0)