Skip to content

Commit 39b2343

Browse files
committed
fix: lint
1 parent 7533901 commit 39b2343

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/routes/projectMembers/create.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ describe('Project Members create', () => {
122122
resJson.role.should.equal('copilot');
123123
resJson.projectId.should.equal(project1.id);
124124
resJson.userId.should.equal(40051332);
125-
should.exist(resJson.id)
125+
should.exist(resJson.id);
126126
server.services.pubsub.publish.calledWith('project.member.invite.created').should.be.true;
127127
request(server)
128128
.patch(`/v5/projects/${project1.id}/invites/${resJson.id}`)
@@ -389,7 +389,7 @@ describe('Project Members create', () => {
389389
},
390390
},
391391
};
392-
392+
393393
if (url.indexOf('/_search') >= 0) {
394394
ret.data.result.content.push(testCopilot);
395395
} else {
@@ -414,8 +414,8 @@ describe('Project Members create', () => {
414414
done(err);
415415
} else {
416416
const inviteResJson = inviteRes.body.success[0];
417-
should.exist(inviteResJson)
418-
should.exist(inviteResJson.id)
417+
should.exist(inviteResJson);
418+
should.exist(inviteResJson.id);
419419
request(server)
420420
.patch(`/v5/projects/${project1.id}/invites/${inviteResJson.id}`)
421421
.set({

0 commit comments

Comments
 (0)