Skip to content

Commit f6593cb

Browse files
committed
Update builds.e2e-spec.ts
1 parent 853d41f commit f6593cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/builds.e2e-spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ describe('Builds (e2e)', () => {
258258
const build = await buildsController.create({ project: project.id, branchName: 'develop' });
259259

260260
return requestWithAuth(app, 'patch', `/builds/${build.id}`, user.token)
261-
.send({isRunning: false})
261+
.send({ isRunning: false })
262262
.expect(200)
263263
.expect((res) => {
264264
expect(res.body.isRunning).toBe(false);
@@ -269,7 +269,7 @@ describe('Builds (e2e)', () => {
269269
const build = await buildsController.create({ project: project.id, branchName: 'develop' });
270270

271271
return requestWithApiKey(app, 'patch', `/builds/${build.id}`, user.apiKey)
272-
.send({isRunning: false})
272+
.send({ isRunning: false })
273273
.expect(200)
274274
.expect((res) => {
275275
expect(res.body.isRunning).toBe(false);

0 commit comments

Comments
 (0)