UNPKG
be-framework
Version:
latest (0.7.0)
0.7.0
0.6.1
0.6.0
0.5.0
0.4.0
0.3.0
0.2.2
0.2.1
0.1.0
BE is a framework for supercharging your BotEngine bots
be-framework
/
src
/
botengine
/
routes.test.js
9 lines
(6 loc)
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const handler = jest.fn().mockReturnValue(
'works'
); beforeEach(jest.resetAllMocks); describe(
'botengine'
, () => {
test
(
'action picks result.interaction.action'
);
test
(
'name picks result.interaction.name'
); });