uhf.test.js 495 Bytes
import expect from 'expect.js';
import muk from 'muk';
import Uhf from '../../src/lib/directive/uhf';
describe('uhf.js', function() {
    describe('init', function() {
        it('init expect OK', function() {
            let uhf = new Uhf();
            expect(uhf.proc.getConfig).to.be.ok();
            expect(uhf.proc.getVersion).to.be.ok();
        });
    });
    describe('getConfig', function() {
        it(' ');
    });
    describe('getVersion', function() {
        it();
    });
});