fluro
Version:
Promise based HTTP Fluro client for the browser and node.js
33 lines (26 loc) • 771 B
JavaScript
// // /* global describe, it, before */
// import chai from 'chai';
// import FluroCore from '../src/index.js';
// chai.expect();
// const expect = chai.expect;
// let fluro;
// describe('Load Fluro Core', () => {
// before(() => {
// fluro = new FluroCore();
// });
// describe('When i try and start Fluro', () => {
// it('It should return a Fluro instance', () => {
// expect(fluro.auth);//.to.be.equal('Cat');
// });
// });
// });
// // describe('Given an instance of my Dog library', () => {
// // before(() => {
// // lib = new Dog();
// // });
// // describe('when I need the name', () => {
// // it('should return the name', () => {
// // expect(lib.name).to.be.equal('Dog');
// // });
// // });
// // });