Skip to content

Commit

Permalink
Merge pull request #90 from Konkuk-KUIT/ro-el
Browse files Browse the repository at this point in the history
feat: 6주차 미션 구현
  • Loading branch information
Nangniya authored May 12, 2024
2 parents e16a17c + bf74c6f commit 6869df4
Show file tree
Hide file tree
Showing 21 changed files with 31,606 additions and 0 deletions.
23 changes: 23 additions & 0 deletions week6/ro-el/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
11 changes: 11 additions & 0 deletions week6/ro-el/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
roots: ["<rootDir>"],
testMatch: ["**/__tests__/**/*.+(ts|tsx|js)", "**/?(*.)+(spec|test).+(ts|tsx|js)"],
setupFilesAfterEnv: ["@testing-library/jest-dom/extend-expect"],
transform: {
"^.+\\.(ts|tsx)$": "ts-jest"
},
moduleNameMapper: {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
};
Loading

0 comments on commit 6869df4

Please sign in to comment.