Skip to content

Commit

Permalink
fix: 절대경로 수정 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene028 committed Jul 20, 2024
1 parent ab0dffd commit 8afd547
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/wow-ui/jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config: Config = {
"^.+\\.tsx?$": [
"ts-jest",
{
tsconfig: "./tsconfig.json",
tsconfig: "tsconfig.json",
},
],
},
Expand All @@ -18,12 +18,12 @@ const config: Config = {
verbose: true,
collectCoverage: true,
restoreMocks: true,
testMatch: ["./src/**/*.test.(js|jsx|ts|tsx)"],
testPathIgnorePatterns: ["./styled-system/", "./node-modules/"],
coveragePathIgnorePatterns: ["./styled-system/", "./node-modules/"],
testMatch: ["src/**/*.test.(js|jsx|ts|tsx)"],
testPathIgnorePatterns: ["styled-system/", "node-modules/"],
coveragePathIgnorePatterns: ["styled-system/", "node-modules/"],
moduleNameMapper: {
"^@/(.*)$": "./src/$1",
"^@styled-system(.*)$": "./styled-system/$1",
"^@/(.*)$": "src/$1",
"^@styled-system(.*)$": "styled-system/$1",
},
testEnvironment: "jsdom",
};
Expand Down

0 comments on commit 8afd547

Please sign in to comment.