UNPKG

@platform/cell.schema

Version:

URI and database schemas for the `cell.os`.

10 lines (9 loc) 301 B
import { expect } from '../test'; import { RefSchema, RefLinks } from '.'; import { Schema } from '../Schema'; describe('RefSchema', () => { it('exposed from Schema (static)', () => { expect(Schema.ref).to.equal(RefSchema); expect(Schema.ref.links).to.equal(RefLinks); }); });