Chak Shun Yu

Hi, I'm Chak Shun Yu, a software engineer with a current focus on React, former Storybook maintainer, and technical writer. This blog is where I write about everything I encounter and learn during my journey to become a better developer. The main topics I focus on are React, JavaScript, testing, readability, and team productivity.

How To Mock The Return Value Of An Imported Function In Jest

February 08, 2022 - 3 minutes

Storybook is one of the greatest development tools in frontend development. However, adopting Storybook isn't a trivial decision to make for a team. This article provides an overview of practical factors to consider based on personal experience, business value, and long-term impact.

A Beginners Guide To Behaviour Testing In React

December 02, 2021 - 7 minutes

CSS styling plays an integral role in the development of React components. One of the most interesting challenges is designing a component’s API around styling features. The most common way is exposing a className prop, but is that a good idea and are there better options?

How To Mock A React Component In Jest

November 07, 2021 - 3 minutes

NPM packages are essential to our jobs as React developers. However, with over 1.3 million packages on the registry and varying degrees of quality, picking the most suitable one isn’t always straightforward. To help, this article goes over 5 important aspects to NPM React libraries that you should pay attention to before picking them.

My Simple Checklist For Well Tested React Components

September 26, 2021 - 6 minutes

In the world of React development, there are so many third-party libraries Because of that, it’s easy to get lost in deciding which library to use. This article looks into 3 different libraries for implementing an accordion while going over requirements, what to consider, and drawing comparisons.

How To Spy On An Exported Function In Jest

September 03, 2021 - 1 minutes

It's hard to imagine React development without TypeScript nowadays. However, being a good React developer doesn’t automatically translate into being a good TypeScript developer. This article goes over 7 different utility types that are helpful to React developers on a daily basis.

What Are Proper Use Cases For Snapshot Testing React Components?

August 28, 2021 - 5 minutes
Testable React

Every React developer will know of the useCallback hook and have tried to integrate it with TypeScript. However, there are various ways to do so. This article covered three different ways, namely by typing only the callback parameter(s), typing the returning value, or the call itself.

To Mock or Not to Mock, That is The Question

May 17, 2021 - 3 minutes

An integral part of CSS styling resolves around the CSS box model, which is the interaction between the content area, paddings, border, and margins. Contrary to the default model, using the border-box box model has my preference for creating more intuitive styling.

How To Mock Only One Function From A Module In Jest

April 18, 2021 - 6 minutes

Multiline text truncation is a common user interface design. It allows for saving precious screen estate, making UI more uniform, and prioritization of information for the user. This article explores how to implement it using CSS's line-clamp.

Why I'll definitely use mapDispatchToProps in Redux

January 05, 2020 - 4 minutes

Shallow comparison is a concept all over React development and documentation. It plays a key role in React’s internals, but it’s not often explained. This article covers how it works by diving into the source code and finishes with some interesting takeaways.