botbuilder-formflow
Version:
Form flow with subdialogs
16 lines (12 loc) • 440 B
JavaScript
const botFactory = require('./botFactory');
const loadFlow = require('./loadForm');
describe('Tests for complex validators in forms', function () {
let bot = null;
beforeEach(function () {
bot = botFactory.create();
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
});
it('Test that all specified validators will be executed', function (done) {
loadFlow(bot, 'complexValidatorPrompts/currencyExchangeForm', done);
});
});