Skip to content

Commit

Permalink
fix: 🐛 addressing types (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
Loonz206 authored Feb 25, 2024
1 parent da5f13c commit f3f761c
Show file tree
Hide file tree
Showing 10 changed files with 336 additions and 70 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
"extends": [
"standard",
"plugin:react/recommended",
"plugin:prettier/recommended",
"plugin:cypress/recommended",
"plugin:jsx-a11y/recommended",
"plugin:sonarjs/recommended",
"next"
"plugin:@typescript-eslint/recommended",
"next",
"plugin:prettier/recommended"
],
"parserOptions": {
"sourceType": "module"
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.17.0
280 changes: 251 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/react": "18.2.56",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"core-js": "^3.36.0",
"cypress": "^13.6.4",
"cypress-axe": "^1.5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/example.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ describe("testing with jest", () => {
const errorMessage = "grape jelly";
const successMessage = "peanut butter";
const fetchData = () => {
return new Promise((resolve, reject) => {
return new Promise((resolve) => {
setTimeout(() => {
resolve(successMessage);
}, 100);
Expand Down
Loading

0 comments on commit f3f761c

Please sign in to comment.