UNPKG

dc-mar

Version:

Node module for DC Master Address Repository API

23 lines (20 loc) 501 B
/* globals describe it */ const expect = require('chai').expect; const {Client, createClient} = require('..'); describe( 'createClient', function () { describe( 'class', function () { it( 'Basic', function () { const client = createClient(); expect(client).is.instanceof(Client); } ); } ); } );