UNPKG
model-layer
Version:
latest (2.8.0)
2.8.0
2.7.18
2.7.17
2.7.16
2.7.15
2.7.13
2.6.13
2.5.13
2.5.12
2.4.12
2.2.10
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.4.3
1.4.2
1.4.1
1.4.0
1.3.6
1.3.5
1.2.0
1.1.7
1.1.6
1.0.5
1.0.4
1.0.2
1.0.1
1.0.0
model layer
github.com/eprincev-egor/model-layer
eprincev-egor/model-layer
model-layer
/
test
/
index-spec.ts
20 lines
(10 loc)
•
293 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import
assert
from
"assert"
;
import
*
as
index
from
"../lib/index"
;
describe
(
"test index"
,
() =>
{
it
(
"index has Model"
,
() =>
{ assert.
ok
( index.
Model
); });
it
(
"index has Collection"
,
() =>
{ assert.
ok
( index.
Collection
); }); });