@flood/chrome
Advanced tools
Comparing version 0.2.4 to 0.2.6
# `@flood/chrome` Changelog | ||
## 0.2.5 (27/02/2018): | ||
* Adds `responseTimeMeasurement` option, now defaulting to `step` | ||
* Adds `consoleFilter` option, which filters the browser console | ||
## 0.2.4 (21/02/2018): | ||
@@ -4,0 +9,0 @@ |
@@ -105,6 +105,6 @@ // Type definitions for @flood/chrome 0.1.12 | ||
* Possible values: | ||
* - `"page"`: (Default) Record the document loading response time. This is usually what you consider response time on paged web apps. | ||
* - `"documentReady"`: Record page load time as the time when document ready event fires. Only useful on paged applications. | ||
* - `"page"`: Record the document loading response time. This is usually what you consider response time on paged web apps. | ||
* - `"network"`: Takes the mean response time of all network requests which occur during a step. This is useful for Single Page Application which don't actually trigger a navigation. | ||
* - `"step"`: Records the wall clock time of a step. This is useful for Single Page Application which don't actually trigger a navigation. | ||
* - `"step"`: (Default) Records the wall clock time of a step. This is useful for Single Page Application which don't actually trigger a navigation. | ||
* - `"stepWithThinkTime"`: Records the wall clock time of a step including `actionDelay` time. | ||
*/ | ||
@@ -122,4 +122,23 @@ responseTimeMeasurement?: ResponseTiming | ||
*/ | ||
type ResponseTiming = 'page' | 'network' | 'step' | ||
type ResponseTiming = | ||
/** | ||
* Record the document loading response time. This is usually what you consider response time on paged web apps. | ||
*/ | ||
| 'page' | ||
/** | ||
* (Experimental) Takes the mean response time of all network requests which occur during a step. This is useful for Single Page Application which don't actually trigger a navigation. | ||
*/ | ||
| 'network' | ||
/** | ||
* (Default) Records the wall clock time of a step. This is useful for Single Page Application which don't actually trigger a navigation. | ||
*/ | ||
| 'step' | ||
/** | ||
* `"stepWithThinkTime"`: Records the wall clock time of a step including `actionDelay` time. | ||
*/ | ||
| 'stepWithThinkTime' | ||
/** | ||
@@ -126,0 +145,0 @@ * Specifies a `console` method |
{ | ||
"name": "@flood/chrome", | ||
"version": "0.2.4", | ||
"version": "0.2.6", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "description": "Flood Chrome provides an API for scripting Browser Level Load Tests", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
266738
897