UNPKG

bot-handoff

Version:

Bot hand off module for the Microsoft Bot Framework. It allows you to transfer a customer from talking to a bot to talking to a human.

8 lines (6 loc) 295 B
import * as Promise from 'bluebird'; import { InMemoryProvider } from './../src/provider/prebuilt/InMemoryProvider'; import { providerTest } from './providerTest'; describe('built in providers', () => { providerTest(() => Promise.resolve(new InMemoryProvider()), 'in memory provider'); });