UNPKG
kapi-framework
Version:
latest (0.0.1)
0.0.1
A framework to shift the focus towards business logic.
github.com/Laufire/kapi
Laufire/kapi
kapi-framework
/
tests
/
index.test.js
10 lines
(6 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
describe
(
'Testing the integrity of the main entry-point.'
,
() =>
{
const
TestedModule
=
require
(
'../src'
);
test
(
'Test the export structure.'
,
() =>
{
expect
(
TestedModule
).
toHaveProperty
(
'kapi'
, expect.
any
(
Function
)); }); });