@web/test-runner-chrome
Advanced tools
Comparing version 0.6.7 to 0.6.8
# @web/test-runner-chrome | ||
## 0.6.8 | ||
### Patch Changes | ||
- 88cc7ac: Reworked concurrent scheduling logic | ||
When running tests in multiple browsers, the browsers are no longer all started in parallel. Instead a new `concurrentBrowsers` property controls how many browsers are run concurrently. This helps improve speed and stability. | ||
- Updated dependencies [88cc7ac] | ||
- @web/test-runner-core@0.7.19 | ||
## 0.6.7 | ||
@@ -4,0 +15,0 @@ |
@@ -25,3 +25,3 @@ import * as puppeteerCore from 'puppeteer-core'; | ||
constructor(launchOptions: LaunchOptions, customPuppeteer?: typeof puppeteerCore | undefined, createPageFunction?: CreatePageFunction | undefined); | ||
start(config: TestRunnerCoreConfig, testFiles: string[]): Promise<void>; | ||
initialize(config: TestRunnerCoreConfig, testFiles: string[]): Promise<void>; | ||
launchBrowser(options?: LaunchOptions): Promise<puppeteerCore.Browser>; | ||
@@ -28,0 +28,0 @@ stop(): Promise<void>; |
@@ -36,3 +36,3 @@ "use strict"; | ||
} | ||
async start(config, testFiles) { | ||
async initialize(config, testFiles) { | ||
this.config = config; | ||
@@ -39,0 +39,0 @@ this.testFiles = testFiles; |
{ | ||
"name": "@web/test-runner-chrome", | ||
"version": "0.6.7", | ||
"version": "0.6.8", | ||
"publishConfig": { | ||
@@ -43,3 +43,3 @@ "access": "public" | ||
"@types/puppeteer-core": "^2.0.0", | ||
"@web/test-runner-core": "^0.7.15", | ||
"@web/test-runner-core": "^0.7.19", | ||
"@web/test-runner-coverage-v8": "^0.1.2", | ||
@@ -46,0 +46,0 @@ "chrome-launcher": "^0.13.3", |
@@ -52,3 +52,3 @@ import * as puppeteerCore from 'puppeteer-core'; | ||
async start(config: TestRunnerCoreConfig, testFiles: string[]) { | ||
async initialize(config: TestRunnerCoreConfig, testFiles: string[]) { | ||
this.config = config; | ||
@@ -55,0 +55,0 @@ this.testFiles = testFiles; |
Sorry, the diff of this file is not supported yet
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
48686