chrome.commands.onCommand.trigger('current-tab-1') //triggers function and can see print message
assert.ok(chrome.commands.onCommand.addListener.calledOnce); // works fine
assert.ok(chrome.commands.onCommand.addListener.withArgs('current-tab-1').calledOnce); //fails
following code support to return
true