Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@flood/chrome

Package Overview
Dependencies
Maintainers
2
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flood/chrome - npm Package Compare versions

Comparing version 0.2.4 to 0.2.6

5

CHANGELOG.md
# `@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 @@

27

index.d.ts

@@ -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

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc