
👋 Hey, I'm Max Kovalevski
I am a software developer based in Europe
I write a blog about topics that interest me most: programming languages in general, TypeScript, testing, writing and other great stuff.
More on about.md • Contact me@kovalevski.net
Subscribe to the newsletter
Get a once-per-week email with my latest content. By subscribing to this newsletter you will also be the first to receive last updates of my eBooks and courses.
Feed
create-react-app
create-react-app It is a command-line interface that provides an ability to create simple React … Read more
command-line interface
command-line interface It is a program that has interface which is based on commands Examples … Read more
First Steps in Unit Testing with TypeScript
Unit testing is one of the greatest ways to write effective code. In this article, I want to … Read more
Web browser
Web browser An application that provides an ability to view web pages and more. Examples … Read more
Google Chrome
Google Chrome A Web browser that made by Google company, based on Chromium project. Links … Read more
Don't use arrow function inside mockImplementation with this (Jest)
Don’t use arrow function inside mockImplementation with this (Jest) When using the arrow … Read more
Using "table" in method it.each of Jest
Using “table” in method it.each of Jest test.each`table`(name, fn, timeout) 1 2 3 4 5 … Read more
The problem with mutation of object data in Jest
The problem with mutation of object data in Jest Let’s say we have some method that just … Read more
Test of async method in Jest
Test of async method in Jest An example of code: 1 2 3 4 5 6 7 8 9 10 module.exports = { … Read more
Debugging in Jest
Debugging in Jest Add breakpoint in test: 1 2 3 4 5 6 7 8 it.each` a | b | result ${1}| ${2}| … Read more