File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/signals/signals/src/core/emitter/__tests__ Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments