UNPKG

cypher-engine

Version:

Cypher Engine to generate Cypher queries

10 lines (8 loc) 260 B
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); }); });