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

mojito-markup-test

Package Overview
Dependencies
Maintainers
4
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mojito-markup-test - npm Package Compare versions

Comparing version 0.0.7 to 0.0.9

2

package.json
{
"name": "mojito-markup-test",
"description": "Utility for view markup validation in mojito unit tests.",
"version": "0.0.7",
"version": "0.0.9",
"author": "David Gomez <dgomez@yahoo-inc.com>",

@@ -6,0 +6,0 @@ "contributors": [

@@ -51,6 +51,8 @@ /*

preloadStore = function (cfg) {
store = rs.createStore(cfg);
store._staticDetails = {};
store._appY = Y;
store.preload();
if (!store || !cfg.reuse) {
store = rs.createStore(cfg);
store._staticDetails = {};
store._appY = Y;
store.preload();
}
},

@@ -90,8 +92,9 @@

getMojitTypeDetails = function (env, ctx, type, callback) {
var mojitType;
try {
var mojitType = store.getMojitTypeDetails(env, ctx, type);
callback(null, mojitType);
mojitType = store.getMojitTypeDetails(env, ctx, type);
} catch (e) {
callback(e);
return callback(e);
}
callback(null, mojitType);
},

@@ -111,3 +114,4 @@

context: ctx,
appConfig: appConfig
appConfig: appConfig,
reuse: spec.reuseStore
});

@@ -114,0 +118,0 @@

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