version.spec.js 268 B

1234567891011
  1. 'use strict';
  2. describe('myApp.version module', function() {
  3. beforeEach(module('myApp.version'));
  4. describe('version service', function() {
  5. it('should return current version', inject(function(version) {
  6. expect(version).toEqual('0.1');
  7. }));
  8. });
  9. });