jest-editor-support
Advanced tools
Comparing version 22.2.0 to 22.3.0
@@ -36,2 +36,3 @@ 'use strict';Object.defineProperty(exports, "__esModule", { value: true });var _types; | ||
constructor(workspace, options) { | ||
@@ -47,3 +48,3 @@ super(); | ||
start() {let watchMode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; | ||
start() {let watchMode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;let watchAll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; | ||
if (this.debugprocess) { | ||
@@ -54,2 +55,3 @@ return; | ||
this.watchMode = watchMode; | ||
this.watchAll = watchAll; | ||
@@ -62,3 +64,3 @@ // Handle the arg change on v18 | ||
if (this.watchMode) { | ||
args.push('--watch'); | ||
args.push(this.watchAll ? '--watchAll' : '--watch'); | ||
} | ||
@@ -65,0 +67,0 @@ if (this.options.testNamePattern) { |
@@ -25,3 +25,4 @@ /** | ||
watchMode: boolean; | ||
start(watchMode?: boolean): void; | ||
watchAll: boolean; | ||
start(watchMode?: boolean, watchAll?: boolean): void; | ||
closeProcess(): void; | ||
@@ -28,0 +29,0 @@ runJestWithUpdateForSnapshots(completion: any): void; |
{ | ||
"name": "jest-editor-support", | ||
"version": "22.2.0", | ||
"version": "22.3.0", | ||
"repository": { | ||
@@ -5,0 +5,0 @@ "type": "git", |
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
45023
848