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

100% Statements 5/5
100% Branches 0/0
100% Functions 1/1
100% Lines 5/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                 1x 1x           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"
  }
];