From 7ea444c78d28af004a9c11bf2f8db0af9234c028 Mon Sep 17 00:00:00 2001 From: Jeremy Guarini Date: Tue, 26 Oct 2021 10:26:23 -0700 Subject: [PATCH] update filexplorer test Signed-off-by: Jeremy Guarini --- .../src/components/FileExplorer/FileExplorer.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/code-coverage/src/components/FileExplorer/FileExplorer.test.tsx b/plugins/code-coverage/src/components/FileExplorer/FileExplorer.test.tsx index ff5845edfe..948d9c9722 100644 --- a/plugins/code-coverage/src/components/FileExplorer/FileExplorer.test.tsx +++ b/plugins/code-coverage/src/components/FileExplorer/FileExplorer.test.tsx @@ -75,6 +75,6 @@ const dummyDataGroupedByPath = { describe('groupByPath function', () => { it('should group files by their root directory,as per their filename', () => { - expect(groupByPath(dummyFiles)).toBe(dummyDataGroupedByPath); + expect(groupByPath(dummyFiles)).toStrictEqual(dummyDataGroupedByPath); }); });