openstack-health/test/unit/services/example_spec.js

23 lines
393 B
JavaScript

/*global angular */
'use strict';
describe('Unit: ExampleService', function() {
var service;
beforeEach(function() {
// instantiate the app module
angular.mock.module('app');
// mock the service
angular.mock.inject(function(ExampleService) {
service = ExampleService;
});
});
it('should exist', function() {
expect(service).toBeDefined();
});
});