Socket
Socket
Sign inDemoInstall

@web/test-runner-core

Package Overview
Dependencies
Maintainers
6
Versions
144
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/test-runner-core - npm Package Compare versions

Comparing version 0.5.2 to 0.5.3

6

CHANGELOG.md
# @web/test-runner-core
## 0.5.3
### Patch Changes
- 64d867c: don't schedule sessions in parallel
## 0.5.2

@@ -4,0 +10,0 @@

4

dist/runner/TestScheduler.d.ts

@@ -12,4 +12,4 @@ import { TestRunnerConfig } from './TestRunnerConfig';

private clearTimeouts;
schedule(testRun: number, sessionsToSchedule: Iterable<TestSession>): Promise<void[]>;
runScheduled(testRun: number): Promise<void[]>;
schedule(testRun: number, sessionsToSchedule: Iterable<TestSession>): Promise<void>;
runScheduled(testRun: number): Promise<void>;
private runSession;

@@ -16,0 +16,0 @@ private setSessionFailed;

@@ -42,4 +42,3 @@ "use strict";

}
runScheduled(testRun) {
const scheduleTasks = [];
async runScheduled(testRun) {
const scheduledIt = this.sessions.forStatus(TestSessionStatus_1.SESSION_STATUS.SCHEDULED);

@@ -53,5 +52,4 @@ const runningCount = Array.from(this.sessions.forStatus(TestSessionStatus_1.SESSION_STATUS.INITIALIZING, TestSessionStatus_1.SESSION_STATUS.STARTED)).length;

}
scheduleTasks.push(this.runSession(testRun, value));
await this.runSession(testRun, value);
}
return Promise.all(scheduleTasks);
}

@@ -58,0 +56,0 @@ async runSession(testRun, session) {

{
"name": "@web/test-runner-core",
"version": "0.5.2",
"version": "0.5.3",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

Sorry, the diff of this file is not supported yet

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