Skip to content

Commit 1b4ddff

Browse files
committed
feat: add pre-commit hook for prettier and eslint
1 parent 31d5efe commit 1b4ddff

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.husky/pre-commit

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
# Run prettier
5+
npm run format
6+
7+
# Run eslint
8+
npm run lint

src/features/work-items/create-work-item/feature.spec.int.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,13 @@ describe('createWorkItem integration', () => {
172172
// We would need to fetch the relations, but for now we'll just assert
173173
// that the response indicates a relationship was created
174174
expect(childResult.relations).toBeDefined();
175-
175+
176176
// Check that at least one relation exists that points to our parent
177177
const parentRelation = childResult.relations?.find(
178-
relation =>
179-
relation.rel === 'System.LinkTypes.Hierarchy-Reverse' &&
180-
relation.url && relation.url.includes(`/${parentId}`)
178+
(relation) =>
179+
relation.rel === 'System.LinkTypes.Hierarchy-Reverse' &&
180+
relation.url &&
181+
relation.url.includes(`/${parentId}`),
181182
);
182183
expect(parentRelation).toBeDefined();
183184
});

0 commit comments

Comments
 (0)