Skip to content

Commit

Permalink
fix: husky
Browse files Browse the repository at this point in the history
  • Loading branch information
mnenie committed Aug 4, 2024
1 parent b0aa12d commit 28d5b7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn lint-staged
yarn test:unit
yarn test:unit run
2 changes: 1 addition & 1 deletion src/shared/ui/sheet/__tests__/UiSheet.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('UiSheet', () => {
expect(wrapper.find('[class*="sheet_footer"]').text()).toContain('sheet footer');
});

it('should open and close the sheet', async () => {
it('should open/close the sheet', async () => {
wrapper.vm.open();
await wrapper.vm.$nextTick();
expect(wrapper.find('[class*="sheet"]').attributes('aria-hidden')).toBe('false');
Expand Down

0 comments on commit 28d5b7d

Please sign in to comment.