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

rx-sandbox

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rx-sandbox - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

10

CHANGELOG.md

@@ -0,1 +1,11 @@

<a name="0.0.6"></a>
## [0.0.6](https://github.com/kwonoj/rx-sandbox/compare/v0.0.5...v0.0.6) (2017-09-26)
### Bug Fixes
* **getmarbletokenvalue:** Check for `undefined` values for given token ([78b34c2](https://github.com/kwonoj/rx-sandbox/commit/78b34c2))
<a name="0.0.5"></a>

@@ -2,0 +12,0 @@ ## [0.0.5](https://github.com/kwonoj/rx-sandbox/compare/v0.0.4...v0.0.5) (2017-08-27)

2

dist/src/marbles/tokenParseReducer.js

@@ -15,3 +15,3 @@ "use strict";

var getMarbleTokenValue = function (token, value, materializeInnerObservables) {
var customValue = value && value[token] ? value[token] : token;
var customValue = value && typeof value[token] !== 'undefined' ? value[token] : token;
return materializeInnerObservables && customValue instanceof ColdObservable_1.ColdObservable ? customValue.messages : customValue;

@@ -18,0 +18,0 @@ };

@@ -9,3 +9,3 @@ "use strict";

*/
var TestMessageValue = (function () {
var TestMessageValue = /** @class */ (function () {
function TestMessageValue(frame, notification) {

@@ -12,0 +12,0 @@ this.frame = frame;

@@ -17,3 +17,3 @@ "use strict";

*/
var TestScheduler = (function (_super) {
var TestScheduler = /** @class */ (function (_super) {
tslib_1.__extends(TestScheduler, _super);

@@ -20,0 +20,0 @@ function TestScheduler(autoFlush, frameTimeFactor, maxFrameValue) {

{
"name": "rx-sandbox",
"version": "0.0.5",
"version": "0.0.6",
"description": "Marble diagram DSL based test suite for RxJS 5",

@@ -62,3 +62,3 @@ "main": "./dist/src/index.js",

"@types/chai": "^4.0.3",
"@types/jest": "^20.0.7",
"@types/jest": "^21.1.0",
"chai": "^4.1.1",

@@ -69,10 +69,10 @@ "commitizen": "2.9.6",

"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.0.3",
"jest": "^21.0.1",
"lint-staged": "^4.2.2",
"npm-run-all": "^4.0.2",
"nyc": "^10.3.0",
"nyc": "^11.2.1",
"prettier": "^1.5.3",
"rxjs": "5.x",
"shx": "^0.2.2",
"ts-jest": "^20.0.10",
"ts-jest": "^21.0.0",
"ts-node": "^3.3.0",

@@ -87,3 +87,3 @@ "tslint": "^5.6.0",

"dependencies": {
"jest-matcher-utils": "^20.0.3",
"jest-matcher-utils": "^21.0.2",
"jest-matchers": "^20.0.3",

@@ -90,0 +90,0 @@ "tslib": "^1.7.1"

@@ -7,2 +7,4 @@ [![Build Status](https://circleci.com/gh/kwonoj/rx-sandbox/tree/master.svg?style=shield&circle-token=:circle-token)](https://circleci.com/gh/kwonoj/rx-sandbox/tree/master)

[![Greenkeeper badge](https://badges.greenkeeper.io/kwonoj/rx-sandbox.svg)](https://greenkeeper.io/)
`RxSandbox` is test suite for RxJS 5, based on marble diagram DSL for easier assertion around Observables.

@@ -9,0 +11,0 @@

Sorry, the diff of this file is not supported yet

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