Ilyes Hachani

Results 5 issues of Ilyes Hachani

The change allows methods like `context.log.error` to be used.

Hi, I am trying to use coerce with an async function to decrypt some values on KMS. ```javascript convict.addFormat({ name: 'secret', validate: val => { return typeof val !== 'undefined';...

Is there a way to test Library without having to create a bot around it? https://docs.botframework.com/en-us/node/builder/chat-reference/classes/_botbuilder_d_.library.html

feature

I am trying to test an ```AdaptiveCard```. I am using the example from the [documentation](https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-send-rich-cards) to create the card. ```javascript var msg = new builder.Message(session); msg.attachmentLayout(builder.AttachmentLayout.carousel) msg.attachments([ new builder.HeroCard(session) .title("Classic...

I have an immutable data structure defined as follow: ```javascript let DataStructure = function (name, description, imageUrl, linkUrl) { let _name = name; let _description = description; let _imageUrl =...