From dfe9aa3c06fb2152557d359e4e173853d1394891 Mon Sep 17 00:00:00 2001 From: Patrick Hulce Date: Mon, 10 Jun 2019 14:58:34 -0500 Subject: [PATCH] tests: update snapshots --- lib/index.test.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/index.test.js b/lib/index.test.js index f31ac81..fe5e21f 100644 --- a/lib/index.test.js +++ b/lib/index.test.js @@ -36,7 +36,7 @@ describe('getEntity', () => { it('works for direct domain usage', () => { expect(getEntity('https://js.connect.facebook.net/lib.js')).toMatchInlineSnapshot(` Object { - "averageExecutionTime": 142.31544325799132, + "averageExecutionTime": 142.3708560765058, "categories": Array [ "social", ], @@ -60,8 +60,8 @@ Object { ], "homepage": "https://www.facebook.com", "name": "Facebook", - "totalExecutionTime": 144433524, - "totalOccurrences": 1014883, + "totalExecutionTime": 144421993, + "totalOccurrences": 1014407, } `) }) @@ -69,7 +69,7 @@ Object { it('works for inferred domain usage', () => { expect(getEntity('https://unknown.typekit.net/fonts.css')).toMatchInlineSnapshot(` Object { - "averageExecutionTime": 91.44604519774012, + "averageExecutionTime": 91.7116918051686, "categories": Array [ "cdn", ], @@ -84,8 +84,8 @@ Object { ], "homepage": "https://fonts.adobe.com/", "name": "Adobe TypeKit", - "totalExecutionTime": 971157, - "totalOccurrences": 10620, + "totalExecutionTime": 954627, + "totalOccurrences": 10409, } `) })