generator-teonet-webkit
Version:
Teonet node-webkit application generator
21 lines (14 loc) • 350 B
JavaScript
/* global expect */
;
describe('Service: teonet', function () {
// load the service's module
beforeEach(module('teonetWebkitApp'));
// instantiate service
var teonet;
beforeEach(inject(function (_teonet_) {
teonet = _teonet_;
}));
it('should do something', function () {
expect(!!teonet).toBe(true);
});
});