botbuilder-formflow
Version:
Form flow with subdialogs
17 lines (15 loc) • 491 B
JavaScript
const botFactory = require('./botFactory');
const loadFlow = require('./loadForm');
describe('Test basic messaging features', function () {
let bot = null;
beforeEach(function () {
bot = botFactory.create();
jasmine.DEFAULT_TIMEOUT_INTERVAL = 5000;
});
it('Test sending messages', function (done) {
loadFlow(bot, 'messaging/messageForm', done);
});
it('Test ending conversation', function (done) {
loadFlow(bot, 'messaging/endConversationForm', done);
});
});