Skip to content

Commit 2b5a003

Browse files
committed
wip
1 parent acbb929 commit 2b5a003

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/signals/signals/src/core/emitter/__tests__/signal-emitter.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ describe(SignalEmitter, () => {
252252
expect(mockSubscriber.process).toHaveBeenCalledWith(mockSignal)
253253
})
254254

255-
it('should block the processing of signals until all middleware .load promises are resolved', async () => {
255+
it('should block the flushing of signals until all middleware .load promises are resolved', async () => {
256256
class MockMiddleware1 implements SignalsMiddleware {
257257
process(signal: Signal): Signal | null {
258258
// @ts-ignore
@@ -299,7 +299,7 @@ describe(SignalEmitter, () => {
299299
)
300300
})
301301

302-
it('should not block the processing of signals for multiple subscribers .load method', async () => {
302+
it('subscribers .load promises should not block the flushing ', async () => {
303303
class MockSubscriber1 implements SignalsSubscriber {
304304
process(signal: Signal): Signal {
305305
return signal

0 commit comments

Comments
 (0)