Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…tend into feature/#67
  • Loading branch information
suyeonnnnnnn committed Nov 28, 2023
2 parents 54ca184 + 75a7d97 commit 7b6c295
Show file tree
Hide file tree
Showing 158 changed files with 6,397 additions and 1,767 deletions.
2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE/fe_pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
---

## Issue Number

<!-- 설명을 적어주세요. -->
Expand Down
3 changes: 1 addition & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run format
npm run lint
npx lint-staged
5 changes: 4 additions & 1 deletion jest.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,15 @@ module.exports = {

// Handle static assets
// https://jestjs.io/docs/webpack#handling-static-assets
"^.+\\.(jpg|jpeg|png|gif|webp|avif|svg|ttf|woff|woff2)$": `<rootDir>/__mocks__/fileMock.js`,
"^.+\\.(jpg|jpeg|png|gif|webp|avif|svg|ttf|woff|woff2)$":
"jest-svg-transformer",

// Handle TypeScript path aliases
"^@/(.*)$": "<rootDir>/src/$1",
},

snapshotSerializers: ["@emotion/jest/serializer"],

verbose: true,
testTimeout: 30000,
};
6 changes: 6 additions & 0 deletions jest.setup.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
import "@testing-library/jest-dom";
import "@emotion/jest";
import "@emotion/react";
import "@emotion/styled";
import { matchers } from "@emotion/jest";

expect.extend(matchers);
Loading

0 comments on commit 7b6c295

Please sign in to comment.