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
letbadAsyncMsg="Warning: Unexpected call to 'log' on the context object after function execution has completed. Please check for asynchronous calls that are not awaited or calls to 'done' made before function execution completes. ";
sinon.assert.calledWith(_logger,rpc.RpcLog.Level.Error,"Error: Choose either to return a promise or call 'done'. Do not use both in your script.");
31
+
sinon.assert.calledWith(_logger,rpc.RpcLog.Level.Error,rpc.RpcLog.RpcLogCategory.User,"Error: Choose either to return a promise or call 'done'. Do not use both in your script.");
32
32
});
33
33
34
34
it('async function calls callback and returns value without context.done',async()=>{
@@ -40,21 +40,21 @@ describe('Context', () => {
40
40
it('function logs error on calling context.done more than once',()=>{
sinon.assert.calledWith(_logger,rpc.RpcLog.Level.Error,"Error: 'done' has already been called. Please check your script for extraneous calls to 'done'.");
43
+
sinon.assert.calledWith(_logger,rpc.RpcLog.Level.Error,rpc.RpcLog.RpcLogCategory.User,"Error: 'done' has already been called. Please check your script for extraneous calls to 'done'.");
44
44
});
45
45
46
46
it('function logs error on calling context.log after context.done() called',()=>{
sinon.assert.calledWith(_logger,rpc.RpcLog.Level.Warning,"Warning: Unexpected call to 'log' on the context object after function execution has completed. Please check for asynchronous calls that are not awaited or calls to 'done' made before function execution completes. Function name: test. Invocation Id: 1. Learn more: https://go.microsoft.com/fwlink/?linkid=2097909 ");
50
+
sinon.assert.calledWith(_logger,rpc.RpcLog.Level.Warning,rpc.RpcLog.RpcLogCategory.System,"Warning: Unexpected call to 'log' on the context object after function execution has completed. Please check for asynchronous calls that are not awaited or calls to 'done' made before function execution completes. Function name: test. Invocation Id: 1. Learn more: https://go.microsoft.com/fwlink/?linkid=2097909 ");
51
51
});
52
52
53
53
it('function logs error on calling context.log from non-awaited async call',async()=>{
sinon.assert.calledWith(_logger,rpc.RpcLog.Level.Warning,"Warning: Unexpected call to 'log' on the context object after function execution has completed. Please check for asynchronous calls that are not awaited or calls to 'done' made before function execution completes. Function name: test. Invocation Id: 1. Learn more: https://go.microsoft.com/fwlink/?linkid=2097909 ");
57
+
sinon.assert.calledWith(_logger,rpc.RpcLog.Level.Warning,rpc.RpcLog.RpcLogCategory.System,"Warning: Unexpected call to 'log' on the context object after function execution has completed. Please check for asynchronous calls that are not awaited or calls to 'done' made before function execution completes. Function name: test. Invocation Id: 1. Learn more: https://go.microsoft.com/fwlink/?linkid=2097909 ");
58
58
});
59
59
60
60
it('function calls callback correctly with bindings',()=>{
0 commit comments