diff --git a/.all-contributorsrc b/.all-contributorsrc index 87ec42fd..be8f304a 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -174,6 +174,15 @@ "contributions": [ "code" ] + }, + { + "login": "keiya01", + "name": "keiya sasaki", + "avatar_url": "https://avatars1.githubusercontent.com/u/34934510?v=4", + "profile": "https://keiya01.github.io/portfolio", + "contributions": [ + "test" + ] } ], "commitConvention": "none" diff --git a/README.md b/README.md index 06316c9a..e40d2ad9 100644 --- a/README.md +++ b/README.md @@ -142,33 +142,33 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - + + + +

Michael Peyper

💻 🎨 📖 🤔 🚇 📦 ⚠️ 🔧

otofu-square

💻

Patrick P. Henley

🤔 👀

Matheus Marques

💻

Dhruv Patel

🐛 👀

Nathaniel Tucker

🐛 👀

Sergei Grishchenko

💻 📖 🤔

Michael Peyper

💻 🎨 📖 🤔 🚇 📦 ⚠️ 🔧

otofu-square

💻

Patrick P. Henley

🤔 👀

Matheus Marques

💻

Dhruv Patel

🐛 👀

Nathaniel Tucker

🐛 👀

Sergei Grishchenko

💻 📖 🤔

Josep M Sobrepere

📖

Marcel Tinner

📖

Daniel K.

🐛 💻

Vince Malone

💻

Sebastian Weber

📝

Christian Gill

📖

JavaScript Joe


Josep M Sobrepere

📖

Marcel Tinner

📖

Daniel K.

🐛 💻

Vince Malone

💻

Sebastian Weber

📝

Christian Gill

📖

JavaScript Joe


Sarah Dayan

📦

Roman Gusev

📖

Adam Seckel

💻

Sarah Dayan

📦

Roman Gusev

📖

Adam Seckel

💻

keiya sasaki

⚠️
- This project follows the [all-contributors](https://allcontributors.org/) specification. diff --git a/test/useMemo.test.js b/test/useMemo.test.js index 3abeb855..efbf49d6 100644 --- a/test/useMemo.test.js +++ b/test/useMemo.test.js @@ -39,15 +39,15 @@ describe('useCallback tests', () => { const callback1 = result.current - const calbackValue1 = callback1() + const callbackValue1 = callback1() - expect(calbackValue1).toEqual({ value: 1 }) + expect(callbackValue1).toEqual({ value: 1 }) const callback2 = result.current - const calbackValue2 = callback2() + const callbackValue2 = callback2() - expect(calbackValue2).toEqual({ value: 1 }) + expect(callbackValue2).toEqual({ value: 1 }) expect(callback2).toBe(callback1) @@ -55,9 +55,9 @@ describe('useCallback tests', () => { const callback3 = result.current - const calbackValue3 = callback3() + const callbackValue3 = callback3() - expect(calbackValue3).toEqual({ value: 2 }) + expect(callbackValue3).toEqual({ value: 2 }) expect(callback3).not.toBe(callback1) })