Skip to content

Commit

Permalink
ope
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine committed Mar 12, 2024
1 parent 71f64e1 commit d130be0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license
* Copyright 2022 Google LLC
* Copyright 2024 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/

Expand All @@ -10,7 +10,7 @@ import {LH_ROOT} from '../../../shared/root.js';

/* eslint-env browser */

describe('CSS usage over a flow navigation', function() {
describe('User flow stylesheet tracking', function() {
// eslint-disable-next-line no-invalid-this
this.timeout(120_000);

Expand All @@ -22,7 +22,7 @@ describe('CSS usage over a flow navigation', function() {
state.server.baseDir = `${LH_ROOT}/core/test/fixtures/user-flows/css-change`;
});

it('should correctly scope CSS usage information', async () => {
it('should correctly scope stylesheets based on mode', async () => {
const pageUrl = `${state.serverBaseUrl}/start.html`;
await state.page.goto(pageUrl, {waitUntil: ['networkidle0']});

Expand Down Expand Up @@ -67,7 +67,7 @@ describe('CSS usage over a flow navigation', function() {
'h1 {color: red}',
]);

// Some stylesheets are pre-existing and they are out in scope for timespan mode
// Some stylesheets are pre-existing and they are in in scope for timespan mode
expect(stylesheets2).toEqual([
'body {\n border: 5px solid red;\n}',
'h1 {color: red}',
Expand Down

0 comments on commit d130be0

Please sign in to comment.