UNPKG
cypher-engine
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Cypher Engine to generate Cypher queries
github.com/jdksloan/CypherEngine
cypher-engine
/
test
/
Relation.spec.ts
10 lines
(8 loc)
•
260 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Relation
}
from
'../src/models/Relation'
;
describe
(
'Test Relation'
,
() =>
{
test
(
'Instantiation'
,
async
() => {
const
model =
new
Relation
();
expect
(model).
not
.
toBe
(
undefined
);
expect
(model).
toBeInstanceOf
(
Relation
); }); });