Skip to content

Commit

Permalink
core(user-flow): update UIString comments (#14458)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine committed Oct 25, 2022
1 parent d442e35 commit 30612d7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions core/user-flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,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

0 comments on commit 30612d7

Please sign in to comment.