@@ -11,7 +11,7 @@ const addChannel = proxyquire('../lib/add-channel', {
11
11
'./get-client' : proxyquire ( '../lib/get-client' , { './definitions/rate-limit' : rateLimit } ) ,
12
12
} ) ;
13
13
14
- test . beforeEach ( t => {
14
+ test . beforeEach ( ( t ) => {
15
15
// Mock logger
16
16
t . context . log = stub ( ) ;
17
17
t . context . error = stub ( ) ;
@@ -23,7 +23,7 @@ test.afterEach.always(() => {
23
23
nock . cleanAll ( ) ;
24
24
} ) ;
25
25
26
- test . serial ( 'Update a release' , async t => {
26
+ test . serial ( 'Update a release' , async ( t ) => {
27
27
const owner = 'test_user' ;
28
28
const repo = 'test_repo' ;
29
29
const env = { GITHUB_TOKEN : 'github_token' } ;
@@ -56,7 +56,7 @@ test.serial('Update a release', async t => {
56
56
t . true ( github . isDone ( ) ) ;
57
57
} ) ;
58
58
59
- test . serial ( 'Update a maintenance release' , async t => {
59
+ test . serial ( 'Update a maintenance release' , async ( t ) => {
60
60
const owner = 'test_user' ;
61
61
const repo = 'test_repo' ;
62
62
const env = { GITHUB_TOKEN : 'github_token' } ;
@@ -89,7 +89,7 @@ test.serial('Update a maintenance release', async t => {
89
89
t . true ( github . isDone ( ) ) ;
90
90
} ) ;
91
91
92
- test . serial ( 'Update a prerelease' , async t => {
92
+ test . serial ( 'Update a prerelease' , async ( t ) => {
93
93
const owner = 'test_user' ;
94
94
const repo = 'test_repo' ;
95
95
const env = { GITHUB_TOKEN : 'github_token' } ;
@@ -122,7 +122,7 @@ test.serial('Update a prerelease', async t => {
122
122
t . true ( github . isDone ( ) ) ;
123
123
} ) ;
124
124
125
- test . serial ( 'Update a release with a custom github url' , async t => {
125
+ test . serial ( 'Update a release with a custom github url' , async ( t ) => {
126
126
const owner = 'test_user' ;
127
127
const repo = 'test_repo' ;
128
128
const env = { GH_URL : 'https://othertesturl.com:443' , GH_TOKEN : 'github_token' , GH_PREFIX : 'prefix' } ;
@@ -155,7 +155,7 @@ test.serial('Update a release with a custom github url', async t => {
155
155
t . true ( github . isDone ( ) ) ;
156
156
} ) ;
157
157
158
- test . serial ( 'Update a release, retrying 4 times' , async t => {
158
+ test . serial ( 'Update a release, retrying 4 times' , async ( t ) => {
159
159
const owner = 'test_user' ;
160
160
const repo = 'test_repo' ;
161
161
const env = { GITHUB_TOKEN : 'github_token' } ;
@@ -198,7 +198,7 @@ test.serial('Update a release, retrying 4 times', async t => {
198
198
t . true ( github . isDone ( ) ) ;
199
199
} ) ;
200
200
201
- test . serial ( 'Create the new release if current one is missing' , async t => {
201
+ test . serial ( 'Create the new release if current one is missing' , async ( t ) => {
202
202
const owner = 'test_user' ;
203
203
const repo = 'test_repo' ;
204
204
const env = { GITHUB_TOKEN : 'github_token' } ;
@@ -233,7 +233,7 @@ test.serial('Create the new release if current one is missing', async t => {
233
233
t . true ( github . isDone ( ) ) ;
234
234
} ) ;
235
235
236
- test . serial ( 'Throw error if cannot read current release' , async t => {
236
+ test . serial ( 'Throw error if cannot read current release' , async ( t ) => {
237
237
const owner = 'test_user' ;
238
238
const repo = 'test_repo' ;
239
239
const env = { GITHUB_TOKEN : 'github_token' } ;
@@ -260,7 +260,7 @@ test.serial('Throw error if cannot read current release', async t => {
260
260
t . true ( github . isDone ( ) ) ;
261
261
} ) ;
262
262
263
- test . serial ( 'Throw error if cannot create missing current release' , async t => {
263
+ test . serial ( 'Throw error if cannot create missing current release' , async ( t ) => {
264
264
const owner = 'test_user' ;
265
265
const repo = 'test_repo' ;
266
266
const env = { GITHUB_TOKEN : 'github_token' } ;
@@ -295,7 +295,7 @@ test.serial('Throw error if cannot create missing current release', async t => {
295
295
t . true ( github . isDone ( ) ) ;
296
296
} ) ;
297
297
298
- test . serial ( 'Throw error if cannot update release' , async t => {
298
+ test . serial ( 'Throw error if cannot update release' , async ( t ) => {
299
299
const owner = 'test_user' ;
300
300
const repo = 'test_repo' ;
301
301
const env = { GITHUB_TOKEN : 'github_token' } ;
0 commit comments