Socket
Socket
Sign inDemoInstall

@web/test-runner-core

Package Overview
Dependencies
Maintainers
7
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.10.26 to 0.10.27

6

dist/runner/TestRunner.js

@@ -111,5 +111,7 @@ "use strict";

await this.scheduler.stop();
this.server.stop().catch(error => {
const stopActions = [];
const stopServerAction = this.server.stop().catch(error => {
console.error(error);
});
stopActions.push(stopServerAction);
if (this.config.watch) {

@@ -126,4 +128,4 @@ // we only need to stop the browsers in watch mode, in non-watch

}
await Promise.all(stopActions);
}
await Promise.all(stopActions);
this.emit('stopped', this.passed);

@@ -130,0 +132,0 @@ }

{
"name": "@web/test-runner-core",
"version": "0.10.26",
"version": "0.10.27",
"publishConfig": {

@@ -61,3 +61,3 @@ "access": "public"

"@web/browser-logs": "^0.2.1",
"@web/dev-server-core": "^0.3.16",
"@web/dev-server-core": "^0.3.18",
"chokidar": "^3.4.3",

@@ -64,0 +64,0 @@ "cli-cursor": "^3.1.0",

@@ -159,5 +159,8 @@ import { TestRunnerCoreConfig } from '../config/TestRunnerCoreConfig';

await this.scheduler.stop();
this.server.stop().catch(error => {
const stopActions = [];
const stopServerAction = this.server.stop().catch(error => {
console.error(error);
});
stopActions.push(stopServerAction);

@@ -177,4 +180,4 @@ if (this.config.watch) {

}
await Promise.all(stopActions);
}
await Promise.all(stopActions);
this.emit('stopped', this.passed);

@@ -181,0 +184,0 @@ }

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