All files / botbuilder-unit/spec/scripts/prompts attachment.js

40% Statements 2/5
100% Branches 0/0
0% Functions 0/1
40% Lines 2/5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 241x 1x                                            
const builder = require('botbuilder');
module.exports = [
  {
    "user": "hi"
  },
  {
    "bot": "Please upload an attachment"
  },
  {
    "user": function ( ) {
      let msg = new builder.Message();
      msg.addAttachment({
        "name": "test",
        "contentType": "plain/text",
        "content": "Hello world"
      });
 
      return Promise.resolve(msg);
    }
  },
  {
    "bot": "Your response is:test:plain/text"
  }
];