Skip to content

core(user-flow): update UIString comments #14458

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions core/user-flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ import * as i18n from './lib/i18n/i18n.js';

const UIStrings = {
/**
* @description Default name for a user flow on the given url. "User flow" refers to the series of page navigations and user interactions being tested on the page.
* @example {https://example.com} url
* @description Default name for a user flow on the given url. "User flow" refers to the series of page navigations and user interactions being tested on the page. "url" is a trimmed version of a url that only includes the domain name.
* @example {example.com} url
*/
defaultFlowName: 'User flow ({url})',
/**
* @description Default name for a user flow step that analyzes a page navigation.
* @example {https://example.com} url
* @description Default name for a Lighthouse report that analyzes a page navigation. "url" is a trimmed version of a url that only includes the domain name and path.
* @example {example.com/page} url
*/
defaultNavigationName: 'Navigation report ({url})',
/**
* @description Default name for a user flow step that analyzes user interactions over a period of time.
* @example {https://example.com} url
* @description Default name for a Lighthouse report that analyzes user interactions over a period of time. "url" is a trimmed version of a url that only includes the domain name and path.
* @example {example.com/page} url
*/
defaultTimespanName: 'Timespan report ({url})',
/**
* @description Default name for a user flow step that analyzes the page state at a point in time.
* @example {https://example.com} url
* @description Default name for a Lighthouse report that analyzes the page state at a point in time. "url" is a trimmed version of a url that only includes the domain name and path.
* @example {example.com/page} url
*/
defaultSnapshotName: 'Snapshot report ({url})',
};
Expand Down