@@ -19,7 +19,7 @@ describe("README usage examples", () => {
19
19
{
20
20
body : { } ,
21
21
status : 404 ,
22
- }
22
+ } ,
23
23
)
24
24
25
25
// create file
@@ -36,7 +36,7 @@ describe("README usage examples", () => {
36
36
content : utf8ToBase64 ( "content here" ) ,
37
37
message : "update test.txt" ,
38
38
} ,
39
- }
39
+ } ,
40
40
) ;
41
41
42
42
const octokit = new MyOctokit ( {
@@ -70,7 +70,7 @@ describe("README usage examples", () => {
70
70
sha : "sha123" ,
71
71
} ,
72
72
status : 200 ,
73
- }
73
+ } ,
74
74
)
75
75
76
76
// update file
@@ -88,7 +88,7 @@ describe("README usage examples", () => {
88
88
message : "update test.txt" ,
89
89
sha : "sha123" ,
90
90
} ,
91
- }
91
+ } ,
92
92
) ;
93
93
94
94
const octokit = new MyOctokit ( {
@@ -119,7 +119,7 @@ describe("README usage examples", () => {
119
119
{
120
120
body : { } ,
121
121
status : 404 ,
122
- }
122
+ } ,
123
123
) ;
124
124
125
125
const octokit = new MyOctokit ( {
@@ -154,7 +154,7 @@ describe("README usage examples", () => {
154
154
sha : "sha123" ,
155
155
} ,
156
156
status : 200 ,
157
- }
157
+ } ,
158
158
)
159
159
160
160
// delete file
@@ -171,7 +171,7 @@ describe("README usage examples", () => {
171
171
sha : "sha123" ,
172
172
message : "delete test.txt" ,
173
173
} ,
174
- }
174
+ } ,
175
175
) ;
176
176
177
177
const octokit = new MyOctokit ( {
@@ -205,7 +205,7 @@ describe("README usage examples", () => {
205
205
{
206
206
body : { } ,
207
207
status : 404 ,
208
- }
208
+ } ,
209
209
) ;
210
210
211
211
const octokit = new MyOctokit ( {
@@ -245,7 +245,7 @@ describe("README usage examples", () => {
245
245
sha : "sha123" ,
246
246
} ,
247
247
status : 200 ,
248
- }
248
+ } ,
249
249
)
250
250
251
251
// update file
@@ -263,7 +263,7 @@ describe("README usage examples", () => {
263
263
message : "update test.txt" ,
264
264
sha : "sha123" ,
265
265
} ,
266
- }
266
+ } ,
267
267
) ;
268
268
269
269
const octokit = new MyOctokit ( {
@@ -304,7 +304,7 @@ describe("README usage examples", () => {
304
304
ref : "custom-branch" ,
305
305
} ,
306
306
status : 200 ,
307
- }
307
+ } ,
308
308
)
309
309
310
310
// update file
@@ -323,7 +323,7 @@ describe("README usage examples", () => {
323
323
sha : "sha123" ,
324
324
branch : "custom-branch" ,
325
325
} ,
326
- }
326
+ } ,
327
327
) ;
328
328
329
329
const octokit = new MyOctokit ( {
0 commit comments