15 lines
291 B
JavaScript
15 lines
291 B
JavaScript
'use strict';
|
|
|
|
/* jasmine specs for services go here */
|
|
|
|
describe('service', function() {
|
|
beforeEach(module('myApp.services'));
|
|
|
|
|
|
describe('version', function() {
|
|
it('should return current version', inject(function(version) {
|
|
expect(version).toEqual('0.1');
|
|
}));
|
|
});
|
|
});
|