UNPKG

ownfiles

Version:

A library to manage files in a Solid User's Pod

13 lines (11 loc) 325 B
import { expect } from 'chai'; import FileClient from '../lib'; describe('FileClient', function() { describe('constructor()', function() { it('should instantiate without Error', function() { expect(() => { new FileClient(); }).to.not.throw(Error); }); }); });