Skip to content

Commit 5979f1b

Browse files
committed
Update builds.e2e-spec.ts
1 parent 868fa70 commit 5979f1b

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
@@ -85,13 +85,13 @@ describe('Builds (e2e)', () => {
8585
branchName: 'branchName',
8686
project: project.name,
8787
};
88-
const build = await buildsService.create(createBuildDto)
88+
const build = await buildsService.create(createBuildDto);
8989

9090
return requestWithApiKey(app, 'post', '/builds', createBuildDto, user.apiKey)
9191
.expect(201)
9292
.expect((res) => {
9393
expect(res.body.id).toBe(build.id);
94-
expect(res.body.ciBuildId).toBe("test");
94+
expect(res.body.ciBuildId).toBe(createBuildDto.ciBuildId);
9595
expect(res.body.projectId).toBe(project.id);
9696
expect(res.body.branchName).toBe(createBuildDto.branchName);
9797
expect(res.body.failedCount).toBe(0);

0 commit comments

Comments
 (0)