
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
meteor-desktop-plugin-test-suite
Advanced tools
Few utils to ease out functional testing of Meteor Desktop plugins.
Few utils to ease out functional testing of Meteor Desktop plugins.
getElectronPath
Returns path to electron bin.
createTestApp(installPath, pluginName)
Creates a test app with the your plugin included.
/**
* @param {string} installPath - Path at which to install the app.
* @param {string} pluginName - Name of the npm package (plugin) you are testing.
* @returns {Promise}
*/
The test app provides two methods accessible through IPC.
constructPlugin
params log, app, appSettings, eventsBus, modules, settings
It is just constructing your plugin. Pass undefined
if your plugin does not use certain param.
fireSystemEvent
params systemEvent, ...args
Fires an system event, so you can simulate a systemEvent on which you plugin is listening. You need to pass undefined
as systemEvents
params to make this work.
sendIpc(app, ...args)
Sends an IPC message to the main process.
/**
* @param {Object} app - The app ref from Spectron.
* @param {Array} args - Array of arguments to pass to ipc.send.
* @returns {*}
*/
sendModuleEvent(app, module, event, ...args)
Sends an IPC event to your module.
Use if your plugin/module registers itself via let module = new Module('myModuleName')
.
/**
* @param {Object} app - The app ref from Spectron.
* @param {string} module - The module name your plugin is registerting.
* @param {string} event - Event from your module.
* @param {Array} args - Array of arguments to pass to ipc.send.
*/
class Logger(show, showErrors)
Fake logger that eventually can write the logs to the console. You can set show
to false
and showErrors
to true
to only see errors passed to it.
An example of usage in tests is here meteor-desktop-splash-screen
FAQs
This package is no longer supported and has been deprecated. To avoid malicious use, npm is hanging on to the package name.
The npm package meteor-desktop-plugin-test-suite receives a total of 0 weekly downloads. As such, meteor-desktop-plugin-test-suite popularity was classified as not popular.
We found that meteor-desktop-plugin-test-suite demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.