Skip to content

Commit bbddaca

Browse files
committed
prettier
1 parent c48ee72 commit bbddaca

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

test/test.js

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -181,20 +181,20 @@ const fixtures = {
181181
json: '[["ArrayBuffer","AQID"]]'
182182
},
183183
{
184-
name: 'Sliced typed array',
184+
name: 'Sliced typed array',
185185
value: new Uint16Array([10, 20, 30, 40]).subarray(1, 3),
186186
js: 'new Uint16Array([10,20,30,40]).subarray(1,3)',
187187
json: '[["Uint16Array",1,1,3],["ArrayBuffer","CgAUAB4AKAA="]]'
188-
},
189-
{
188+
},
189+
{
190190
name: 'Temporal.Duration',
191191
value: Temporal.Duration.from({ years: 1, months: 2, days: 3 }),
192192
js: 'Temporal.Duration.from("P1Y2M3D")',
193193
json: '[["Temporal.Duration","P1Y2M3D"]]'
194194
},
195195
{
196196
name: 'Temporal.Instant',
197-
value: Temporal.Instant.from("1999-09-29T05:30:00Z"),
197+
value: Temporal.Instant.from('1999-09-29T05:30:00Z'),
198198
js: 'Temporal.Instant.from("1999-09-29T05:30:00Z")',
199199
json: '[["Temporal.Instant","1999-09-29T05:30:00Z"]]'
200200
},
@@ -213,8 +213,12 @@ const fixtures = {
213213
{
214214
name: 'Temporal.PlainDateTime',
215215
value: Temporal.PlainDateTime.from({
216-
year: 1999, month: 9, day: 29,
217-
hour: 12, minute: 34, second: 56
216+
year: 1999,
217+
month: 9,
218+
day: 29,
219+
hour: 12,
220+
minute: 34,
221+
second: 56
218222
}),
219223
js: 'Temporal.PlainDateTime.from("1999-09-29T12:34:56")',
220224
json: '[["Temporal.PlainDateTime","1999-09-29T12:34:56"]]'
@@ -234,8 +238,12 @@ const fixtures = {
234238
{
235239
name: 'Temporal.ZonedDateTime',
236240
value: Temporal.ZonedDateTime.from({
237-
year: 1999, month: 9, day: 29,
238-
hour: 12, minute: 34, second: 56,
241+
year: 1999,
242+
month: 9,
243+
day: 29,
244+
hour: 12,
245+
minute: 34,
246+
second: 56,
239247
timeZone: 'Europe/Rome'
240248
}),
241249
js: 'Temporal.ZonedDateTime.from("1999-09-29T12:34:56+02:00[Europe/Rome]")',

0 commit comments

Comments
 (0)