@platform/cell.client
Version:
A strongly typed HTTP client for operating with a CellOS service end-point.
12 lines (11 loc) • 336 B
JavaScript
import { Client } from '.';
import { HttpClient } from '../Client.http';
import { expect, TypeSystem } from '../test';
describe('Client', () => {
it('Client.Http', () => {
expect(Client.Http).to.equal(HttpClient);
});
it('Client.TypeSystem', () => {
expect(Client.TypeSystem).to.eql(TypeSystem);
});
});