mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-13 17:21:58 +00:00
17 lines
409 B
JavaScript
17 lines
409 B
JavaScript
'use strict';
|
|
|
|
describe('Component: ProjectComponent', function() {
|
|
// load the controller's module
|
|
beforeEach(module('webAppApp.project'));
|
|
|
|
var ProjectComponent;
|
|
|
|
// Initialize the controller and a mock scope
|
|
beforeEach(inject(function($componentController) {
|
|
ProjectComponent = $componentController('project', {});
|
|
}));
|
|
|
|
it('should ...', function() {
|
|
expect(1).to.equal(1);
|
|
});
|
|
});
|