From 6e02a18d3be7c520754edfabdbef5ecb7fff8daf Mon Sep 17 00:00:00 2001 From: Chalarangelo Date: Wed, 9 Mar 2022 15:11:19 +0200 Subject: [PATCH] Fix publish date on article --- blog_posts/testing-react-portals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog_posts/testing-react-portals.md b/blog_posts/testing-react-portals.md index e1f2fb0f1..a010489dd 100644 --- a/blog_posts/testing-react-portals.md +++ b/blog_posts/testing-react-portals.md @@ -6,7 +6,7 @@ expertise: advanced author: chalarangelo cover: blog_images/portal-timelapse.jpg excerpt: Testing React components that use portals can be difficult until you understand what you really need to be testing. -firstSeen: 2022-03-09T05:00:00-04:00 +firstSeen: 2022-03-13T05:00:00-04:00 --- Testing React components can get pretty complicated, especially when dealing with portals. While they seem intimidating, what they are in essence is a way to render a component in a different place in the DOM. Apart from that, when writing tests, one should avoid testing framework internals. This obviously applies to React internals as well.