@node-ts/bus-core
Advanced tools
Comparing version 0.1.10 to 0.1.11
{ | ||
"name": "@node-ts/bus-core", | ||
"version": "0.1.10", | ||
"version": "0.1.11", | ||
"description": "A message bus abstraction to build simple distributed applications in Node.", | ||
@@ -47,3 +47,3 @@ "main": "./dist/index.js", | ||
], | ||
"gitHead": "481d047b3bd2ab6ea26269813af808b715ba63c5" | ||
"gitHead": "e65cef78189716892b379a9b4f8392ee99d5bf80" | ||
} |
@@ -9,2 +9,4 @@ import { ServiceBus } from './service-bus' | ||
import { BUS_SYMBOLS } from '../bus-symbols' | ||
import { Logger } from '@node-ts/logger-core' | ||
import { Mock } from 'typemoq' | ||
@@ -21,3 +23,3 @@ const event = new TestEvent() | ||
container = new TestContainer() | ||
queue = new MemoryQueue() | ||
queue = new MemoryQueue(Mock.ofType<Logger>().object) | ||
sut = container.get(BUS_SYMBOLS.Bus) | ||
@@ -24,0 +26,0 @@ }) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
93354
1827