profile.controller.spec.js 230 Bytes
(function() {
  'use strict';

  describe('controllers', function(){
    var vm;

    beforeEach(module('angular'));
    beforeEach(inject(function(_$controller_) {
      vm = _$controller_('MainController');
    }));
  });
})();