Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@testring/plugin-api

Package Overview
Dependencies
Maintainers
1
Versions
161
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@testring/plugin-api - npm Package Compare versions

Comparing version
0.5.29
to
0.5.30
+7
.mocharc.json
{
"require" : "../../utils/ts-mocha.js",
"watch-extensions":"ts",
"timeout": 30000,
"reporter": "dot",
"spec": "test/**/*.spec.ts"
}
+2
-1
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PluginAPI = exports.applyPlugins = void 0;
const plugin_controller_1 = require("./plugin-controller");
const plugin_api_1 = require("./plugin-api");
exports.PluginAPI = plugin_api_1.PluginAPI;
Object.defineProperty(exports, "PluginAPI", { enumerable: true, get: function () { return plugin_api_1.PluginAPI; } });
const applyPlugins = (pluginsDestinations, config) => {

@@ -7,0 +8,0 @@ const controller = new plugin_controller_1.PluginController(pluginsDestinations);

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractAPI = void 0;
class AbstractAPI {

@@ -4,0 +5,0 @@ constructor(pluginName, module) {

@@ -12,2 +12,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.BrowserProxyAPI = void 0;
const abstract_1 = require("./abstract");

@@ -14,0 +15,0 @@ class BrowserProxyAPI extends abstract_1.AbstractAPI {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DevtoolAPI = void 0;
const abstract_1 = require("./abstract");

@@ -4,0 +5,0 @@ class DevtoolAPI extends abstract_1.AbstractAPI {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FSReaderAPI = void 0;
const abstract_1 = require("./abstract");

@@ -4,0 +5,0 @@ class FSReaderAPI extends abstract_1.AbstractAPI {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpServerAPI = void 0;
const abstract_1 = require("./abstract");

@@ -4,0 +5,0 @@ class HttpServerAPI extends abstract_1.AbstractAPI {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LoggerAPI = void 0;
const abstract_1 = require("./abstract");

@@ -4,0 +5,0 @@ class LoggerAPI extends abstract_1.AbstractAPI {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TestRunControllerAPI = void 0;
const abstract_1 = require("./abstract");

@@ -4,0 +5,0 @@ class TestRunControllerAPI extends abstract_1.AbstractAPI {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TestWorkerAPI = void 0;
const abstract_1 = require("./abstract");

@@ -4,0 +5,0 @@ class TestWorkerAPI extends abstract_1.AbstractAPI {

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PluginAPI = void 0;
const browser_proxy_1 = require("./modules/browser-proxy");

@@ -4,0 +5,0 @@ const fs_reader_1 = require("./modules/fs-reader");

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PluginController = void 0;
const utils_1 = require("@testring/utils");

@@ -4,0 +5,0 @@ const plugin_api_1 = require("./plugin-api");

{
"name": "@testring/plugin-api",
"version": "0.5.29",
"version": "0.5.30",
"main": "./dist/index.js",

@@ -13,9 +13,9 @@ "types": "./src/index.ts",

"dependencies": {
"@testring/logger": "0.5.29",
"@testring/types": "0.5.29",
"@testring/utils": "0.5.29"
"@testring/logger": "0.5.30",
"@testring/types": "0.5.30",
"@testring/utils": "0.5.30"
},
"devDependencies": {
"@types/node": "12.12.21"
"@types/node": "14.6.0"
}
}