@@ -14,9 +14,9 @@ describe("util", () => {
1414 it ( "strips template" , ( ) => {
1515 assert . equal (
1616 uploadUrl (
17- "https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}"
17+ "https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}" ,
1818 ) ,
19- "https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets"
19+ "https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets" ,
2020 ) ;
2121 } ) ;
2222 } ) ;
@@ -30,7 +30,7 @@ describe("util", () => {
3030 it ( "parses newline and comma-delimited (and then some)" , ( ) => {
3131 assert . deepStrictEqual (
3232 parseInputFiles ( "foo,bar\nbaz,boom,\n\ndoom,loom " ) ,
33- [ "foo" , "bar" , "baz" , "boom" , "doom" , "loom" ]
33+ [ "foo" , "bar" , "baz" , "boom" , "doom" , "loom" ] ,
3434 ) ;
3535 } ) ;
3636 } ) ;
@@ -53,7 +53,7 @@ describe("util", () => {
5353 input_discussion_category_name : undefined ,
5454 input_generate_release_notes : false ,
5555 input_make_latest : undefined ,
56- } )
56+ } ) ,
5757 ) ;
5858 } ) ;
5959 it ( "uses input body path" , ( ) => {
@@ -74,7 +74,7 @@ describe("util", () => {
7474 input_discussion_category_name : undefined ,
7575 input_generate_release_notes : false ,
7676 input_make_latest : undefined ,
77- } )
77+ } ) ,
7878 ) ;
7979 } ) ;
8080 it ( "defaults to body path when both body and body path are provided" , ( ) => {
@@ -95,7 +95,7 @@ describe("util", () => {
9595 input_discussion_category_name : undefined ,
9696 input_generate_release_notes : false ,
9797 input_make_latest : undefined ,
98- } )
98+ } ) ,
9999 ) ;
100100 } ) ;
101101 } ) ;
@@ -129,7 +129,7 @@ describe("util", () => {
129129 input_discussion_category_name : undefined ,
130130 input_generate_release_notes : false ,
131131 input_make_latest : undefined ,
132- }
132+ } ,
133133 ) ;
134134 } ) ;
135135
@@ -155,7 +155,7 @@ describe("util", () => {
155155 input_discussion_category_name : undefined ,
156156 input_generate_release_notes : false ,
157157 input_make_latest : undefined ,
158- }
158+ } ,
159159 ) ;
160160 } ) ;
161161 it ( "supports discussion category names" , ( ) => {
@@ -180,7 +180,7 @@ describe("util", () => {
180180 input_discussion_category_name : "releases" ,
181181 input_generate_release_notes : false ,
182182 input_make_latest : undefined ,
183- }
183+ } ,
184184 ) ;
185185 } ) ;
186186
@@ -206,7 +206,7 @@ describe("util", () => {
206206 input_discussion_category_name : undefined ,
207207 input_generate_release_notes : true ,
208208 input_make_latest : undefined ,
209- }
209+ } ,
210210 ) ;
211211 } ) ;
212212
@@ -235,7 +235,7 @@ describe("util", () => {
235235 input_discussion_category_name : undefined ,
236236 input_generate_release_notes : false ,
237237 input_make_latest : undefined ,
238- }
238+ } ,
239239 ) ;
240240 } ) ;
241241 it ( "uses input token as the source of GITHUB_TOKEN by default" , ( ) => {
@@ -262,7 +262,7 @@ describe("util", () => {
262262 input_discussion_category_name : undefined ,
263263 input_generate_release_notes : false ,
264264 input_make_latest : undefined ,
265- }
265+ } ,
266266 ) ;
267267 } ) ;
268268 it ( "parses basic config with draft and prerelease" , ( ) => {
@@ -288,7 +288,7 @@ describe("util", () => {
288288 input_discussion_category_name : undefined ,
289289 input_generate_release_notes : false ,
290290 input_make_latest : undefined ,
291- }
291+ } ,
292292 ) ;
293293 } ) ;
294294 it ( "parses basic config where make_latest is passed" , ( ) => {
@@ -313,7 +313,7 @@ describe("util", () => {
313313 input_discussion_category_name : undefined ,
314314 input_generate_release_notes : false ,
315315 input_make_latest : "false" ,
316- }
316+ } ,
317317 ) ;
318318 } ) ;
319319 it ( "parses basic config with append_body" , ( ) => {
@@ -338,7 +338,7 @@ describe("util", () => {
338338 input_discussion_category_name : undefined ,
339339 input_generate_release_notes : false ,
340340 input_make_latest : undefined ,
341- }
341+ } ,
342342 ) ;
343343 } ) ;
344344 } ) ;
@@ -355,7 +355,7 @@ describe("util", () => {
355355 it ( "resolves files given a set of paths" , async ( ) => {
356356 assert . deepStrictEqual (
357357 paths ( [ "tests/data/**/*" , "tests/data/does/not/exist/*" ] ) ,
358- [ "tests/data/foo/bar.txt" ]
358+ [ "tests/data/foo/bar.txt" ] ,
359359 ) ;
360360 } ) ;
361361 } ) ;
@@ -364,7 +364,7 @@ describe("util", () => {
364364 it ( "returns the patterns that don't match any files" , async ( ) => {
365365 assert . deepStrictEqual (
366366 unmatchedPatterns ( [ "tests/data/**/*" , "tests/data/does/not/exist/*" ] ) ,
367- [ "tests/data/does/not/exist/*" ]
367+ [ "tests/data/does/not/exist/*" ] ,
368368 ) ;
369369 } ) ;
370370 } ) ;
0 commit comments