Skip to content

Commit

Permalink
Merge pull request #147 from doriandevtech/patch-5
Browse files Browse the repository at this point in the history
fix Prettier rules
  • Loading branch information
ASaiAnudeep authored May 8, 2022
2 parents 61ca4ad + c54f43c commit 1419376
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/component/e2e.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('E2E', () => {
response: {
status: 200,
body: {
id: 1
id: 1,
}
}
};
Expand All @@ -23,21 +23,21 @@ describe('E2E', () => {
return {
request: {
method: 'POST',
path: '/api/users'
path: '/api/users',
},
response: {
status: 200
status: 200,
}
};
});
handler.addInteractionHandler('delete user', () => {
return {
request: {
method: 'DELETE',
path: '/api/users/1'
path: '/api/users/1',
},
response: {
status: 200
status: 200,
}
};
});
Expand Down Expand Up @@ -324,4 +324,4 @@ describe('E2E', () => {

after(() => {});

});
});

0 comments on commit 1419376

Please sign in to comment.