From d44be88b3f40ffb68185afe47453578766d693fe Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 13 May 2022 20:21:20 +0200 Subject: [PATCH] Fixed ilegal rendering of trinside div in DomainRow test --- test/domains/DomainRow.test.tsx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/test/domains/DomainRow.test.tsx b/test/domains/DomainRow.test.tsx index 15c176b7..0c506a88 100644 --- a/test/domains/DomainRow.test.tsx +++ b/test/domains/DomainRow.test.tsx @@ -17,13 +17,17 @@ describe('', () => { ], ]; const setUp = (domain: Domain, defaultRedirects?: ShlinkDomainRedirects) => render( - ()} - editDomainRedirects={jest.fn()} - checkDomainHealth={jest.fn()} - />, + + + ()} + editDomainRedirects={jest.fn()} + checkDomainHealth={jest.fn()} + /> + +
, ); it.each(redirectsCombinations)('shows expected redirects', (redirects) => {