UNPKG
lambdaw
Version:
latest (1.0.7)
1.0.7
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A Group of Helpers for Common AWS Lamdba uses Edit
github.com/Negan1911/lambda-ch
Negan1911/lambdaw
lambdaw
/
index.spec.js
12 lines
(9 loc)
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
lambdaw =
require
(
'.'
)
describe
(
'Entry Point Test'
,
() =>
{
it
(
'Should have an Api Gateway Object'
,
() =>
{
expect
(lambdaw).
toHaveProperty
(
'ApiGateway'
) })
it
(
'Should have an Lex Object'
,
() =>
{
expect
(lambdaw).
toHaveProperty
(
'Lex'
) }) })