From fe531f5edf9313824cbf0bef351ab3bc1b005491 Mon Sep 17 00:00:00 2001 From: Connor Clark Date: Thu, 14 Dec 2023 16:36:23 -0800 Subject: [PATCH] snapshots --- packages/cli/test/assert.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/cli/test/assert.test.js b/packages/cli/test/assert.test.js index 76b3187ac..a4cdce91e 100644 --- a/packages/cli/test/assert.test.js +++ b/packages/cli/test/assert.test.js @@ -55,7 +55,7 @@ describe('Lighthouse CI assert CLI', () => { it('should run the recommended preset', async () => { const result = await run([`--preset=lighthouse:recommended`]); expect(result.status).toEqual(1); - expect(result.failures.length).toMatchInlineSnapshot(`98`); + expect(result.failures.length).toMatchInlineSnapshot(`115`); expect(result.warnings.length).toMatchInlineSnapshot(`17`); expect(result.passes.length).toMatchInlineSnapshot(`0`); expect(result.failures).toContain('deprecations failure'); @@ -65,7 +65,7 @@ describe('Lighthouse CI assert CLI', () => { it('should run the no-pwa preset', async () => { const result = await run([`--preset=lighthouse:no-pwa`]); expect(result.status).toEqual(1); - expect(result.failures.length).toMatchInlineSnapshot(`91`); + expect(result.failures.length).toMatchInlineSnapshot(`109`); expect(result.warnings.length).toMatchInlineSnapshot(`16`); expect(result.passes.length).toMatchInlineSnapshot(`0`); expect(result.failures).toContain('deprecations failure'); @@ -92,7 +92,7 @@ describe('Lighthouse CI assert CLI', () => { const result = await run([`--preset=lighthouse:recommended`, '--include-passed-assertions']); expect(result.status).toEqual(1); expect(result.warnings.length).toMatchInlineSnapshot(`17`); - expect(result.failures.length).toMatchInlineSnapshot(`98`); + expect(result.failures.length).toMatchInlineSnapshot(`115`); expect(result.passes.length).toMatchInlineSnapshot(`1`); expect(result.passes).toContain('first-contentful-paint passing'); expect(result.failures).toContain('viewport failure');