from Jest Memo Jest Memo Day1 2021-02-15
- Enter [vscode-jest
- Starts to WATCH automatically.
- The default test for create-react-app suddenly rubs me the wrong way.
- I donât understand what you mean by the mysterious message âundefined doesnât have a map.â
- The OUTPUT tab shows specifically where I scraped it. :
- I donât understand what you mean by the mysterious message âundefined doesnât have a map.â
TypeError: Cannot read property 'map' of undefined
45 | };
46 |
> 47 | const NGKW_Buttons = lastKeywords.map((x) => {
- It was because the ReactN initialization I was doing in index.tsx was not running.
- Similarly, Sentry initialization is not running.
- This was an API access in the first place where I was using it, so I replaced it with a mock.
ts
-
Iâm not sure how to take snapshots.
- The test edit caused it to run automatically, resulting in âUpdate snapshot?â and I pressed it when it popped up.
- Snapshot test now passes.
- The snapshot is now named src/snapshots/App.test.tsx.snap
-
KeyPress
- I wanted to send a key press of the line feed key to a text area. ts
- Not responsive at all.
- I've been searching, and there's mixed information on KeyPress, like you have to specify charCode, or you have to specify which, but if you specify either, you get a type error.
- I was able to get there after referring to [Test Utilities - React](https://reactjs.org/docs/test-utils.html#simulate) and doing the following
ts
- Show Coverage
- Command Pallete: âJest: Toggle Coverage Overlayâ doc
- In an if statement with only a then clause, such as the following, if only the then clause passes the test, it will be highlighted to the effect that âthe branch is not coveredâ. ts
- If you add an else clause at this time, it will not be highlighted (huh?).
- Once you invert the conditional expression, of course the test fails.
- Then when I undo it, it is not highlighted (huh?).
- I was trying to switch things around and it broke lol.
- ![image](https://gyazo.com/5a3eaaaeff76b79d1ab8f7723d2f8693/thumb/1000)
- I restarted vscode and it's back to a decent display?
- ![image](https://gyazo.com/a84a160e59f4fbded5736e83cb8a763d/thumb/1000)
- Perhaps this is already not sane?
- Does not match either figure in README
- Tapping on the command line
$ npm test -- --coverage
- unsuccessful
$ npm test -- --coverage --watchAll=false
-
react-scripts test runs Jest in watch mode by default, so you must explicitly specify âwatchAll=false to remove watch mode.
-
- open
./coverage/lcov-report/index.html
I want to click on the menu icon and click on the menu that comes up.
- Yeah, two clicks and a ReactFiber error.
This page is auto-translated from [/nishio/JestăĄă˘ Day1](https://scrapbox.io/nishio/JestăĄă˘ Day1) using DeepL. If you looks something interesting but the auto-translated English is not good enough to understand it, feel free to let me know at @nishio_en. Iâm very happy to spread my thought to non-Japanese readers.