UNPKG

cypher-engine

Version:

Cypher Engine to generate Cypher queries

10 lines (8 loc) 275 B
import { Property } from '../src/models/Property'; describe('Test Property', () => { test('Instantiation', async () => { const model = new Property('name', 'value'); expect(model).not.toBe(undefined); expect(model).toBeInstanceOf(Property); }); });