You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, E(zoe).offer() does not throw after zcf.shutdown() is called. However, it should throw so that no more offers are accepted.
test.failing(`zcf.shutdown - no further offers accepted`,asynct=>{const{ zoe, zcf }=awaitsetupZCFTest({});constinvitation=awaitzcf.makeInvitation(()=>{},'seat');zcf.shutdown();awaitt.throwsAsync(()=>E(zoe).offer(invitation),{message: 'No further offers are accepted',});});
The text was updated successfully, but these errors were encountered:
What is the Problem Being Solved?
Currently,
E(zoe).offer()
does not throw after zcf.shutdown() is called. However, it should throw so that no more offers are accepted.The text was updated successfully, but these errors were encountered: