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

jest-editor-support

Package Overview
Dependencies
Maintainers
5
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-editor-support - npm Package Compare versions

Comparing version 21.0.2 to 21.1.0

6

build/index.js

@@ -11,3 +11,3 @@ 'use strict';var _Process;

function _load_Process() {return _Process = _interopRequireDefault(require('./Process'));}var _project_workspace;
function _load_Process() {return _Process = _interopRequireWildcard(require('./Process'));}var _project_workspace;

@@ -19,3 +19,3 @@ function _load_project_workspace() {return _project_workspace = _interopRequireDefault(require('./project_workspace'));}var _Runner;

function _load_babylon_parser() {return _babylon_parser = require('./parsers/babylon_parser');}var _test_reconciler;
function _load_test_reconciler() {return _test_reconciler = _interopRequireDefault(require('./test_reconciler'));}function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}
function _load_test_reconciler() {return _test_reconciler = _interopRequireDefault(require('./test_reconciler'));}function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function _interopRequireWildcard(obj) {if (obj && obj.__esModule) {return obj;} else {var newObj = {};if (obj != null) {for (var key in obj) {if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];}}newObj.default = obj;return newObj;}}

@@ -26,3 +26,3 @@ module.exports = {

Node: (_parser_nodes || _load_parser_nodes()).Node,
Process: (_Process || _load_Process()).default,
Process: _Process || _load_Process(),
ProjectWorkspace: (_project_workspace || _load_project_workspace()).default,

@@ -29,0 +29,0 @@ Runner: (_Runner || _load_Runner()).default,

@@ -1,2 +0,2 @@

'use strict';var _fs;
'use strict';Object.defineProperty(exports, "__esModule", { value: true });exports.parse = undefined;var _fs;

@@ -21,3 +21,3 @@

const parse = file => {
const parse = exports.parse = file => {
const itBlocks = [];

@@ -184,2 +184,2 @@ const expects = [];

*
*/module.exports = { parse };
*/

@@ -1,2 +0,2 @@

'use strict';
'use strict';Object.defineProperty(exports, "__esModule", { value: true });

@@ -13,17 +13,10 @@

class Node {} /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/class Expect extends Node {}class ItBlock extends Node {}
module.exports = {
Expect,
ItBlock,
Node };
class Node {}exports.Node = Node; /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/class Expect extends Node {}exports.Expect = Expect;class ItBlock extends Node {}exports.ItBlock = ItBlock;

@@ -1,2 +0,2 @@

'use strict';var _child_process;
'use strict';Object.defineProperty(exports, "__esModule", { value: true });exports.createProcess = undefined;var _child_process;

@@ -28,3 +28,3 @@

*
*/module.exports.createProcess = (workspace, args) => {// A command could look like `npm run test`, which we cannot use as a command
*/const createProcess = exports.createProcess = (workspace, args) => {// A command could look like `npm run test`, which we cannot use as a command
// as they can only be the first command, so take out the command, and add

@@ -31,0 +31,0 @@ // any other bits into the args

@@ -1,15 +0,15 @@

"use strict"; /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/
"use strict";Object.defineProperty(exports, "__esModule", { value: true }); /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/
/**
* Represents the project that the extension is running on and it's state
*/
module.exports = class ProjectWorkspace {
* Represents the project that the extension is running on and it's state
*/
class ProjectWorkspace {

@@ -36,10 +36,10 @@

/**
* Path to a local Jest config file.
*
* @type {string}
*/ /**
* The path to the root of the project's workspace
*
* @type {string}
*/
* Path to a local Jest config file.
*
* @type {string}
*/ /**
* The path to the root of the project's workspace
*
* @type {string}
*/

@@ -76,2 +76,2 @@

* @type {string}
*/};
*/}exports.default = ProjectWorkspace;

@@ -1,2 +0,2 @@

'use strict';var _child_process;
'use strict';Object.defineProperty(exports, "__esModule", { value: true });var _child_process;

@@ -23,3 +23,3 @@

// pass sent out of the process
module.exports = class Runner extends (_events || _load_events()).default {
class Runner extends (_events || _load_events()).default {

@@ -111,10 +111,10 @@

delete this.debugprocess;
}}; /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/
}}exports.default = Runner; /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/

@@ -1,2 +0,2 @@

'use strict';var _child_process;
'use strict';Object.defineProperty(exports, "__esModule", { value: true });var _child_process;

@@ -36,3 +36,3 @@

module.exports = class Settings extends (_events || _load_events()).default {
class Settings extends (_events || _load_events()).default {

@@ -79,10 +79,10 @@

});
}}; /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/
}}exports.default = Settings; /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/

@@ -1,2 +0,2 @@

'use strict';var _path;
'use strict';Object.defineProperty(exports, "__esModule", { value: true });var _path;

@@ -31,4 +31,4 @@

*/
class TestReconciler {
module.exports = class TestReconciler {

@@ -38,3 +38,2 @@

constructor() {

@@ -182,10 +181,10 @@ this.fileStatuses = {};

return assertion;
}}; /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/
}}exports.default = TestReconciler; /**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*
*/
{
"name": "jest-editor-support",
"version": "21.0.2",
"version": "21.1.0",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

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