mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-13 13:31:53 +00:00
18 lines
409 B
JavaScript
18 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);
|
||
|
});
|
||
|
});
|