You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/user-flow.js
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -18,23 +18,23 @@ import * as i18n from './lib/i18n/i18n.js';
18
18
19
19
constUIStrings={
20
20
/**
21
-
* @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.
22
-
* @example {https://example.com} url
21
+
* @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.
22
+
* @example {example.com} url
23
23
*/
24
24
defaultFlowName: 'User flow ({url})',
25
25
/**
26
-
* @description Default name for a user flow step that analyzes a page navigation.
27
-
* @example {https://example.com} url
26
+
* @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.
* @description Default name for a user flow step that analyzes user interactions over a period of time.
32
-
* @example {https://example.com} url
31
+
* @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.
32
+
* @example {example.com/page} url
33
33
*/
34
34
defaultTimespanName: 'Timespan report ({url})',
35
35
/**
36
-
* @description Default name for a user flow step that analyzes the page state at a point in time.
37
-
* @example {https://example.com} url
36
+
* @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.
0 commit comments