mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-03-09 23:38:54 +00:00
Move new_module to separate component to fix issue during build.
This commit is contained in:
parent
d0581b978b
commit
599c8a7662
8 changed files with 379 additions and 364 deletions
|
@ -0,0 +1,17 @@
|
|||
'use strict';
|
||||
|
||||
describe('Component: newModule', function() {
|
||||
// load the component's module
|
||||
beforeEach(module('webAppApp.new_module'));
|
||||
|
||||
var newModuleComponent;
|
||||
|
||||
// Initialize the component and a mock scope
|
||||
beforeEach(inject(function($componentController) {
|
||||
newModuleComponent = $componentController('newModule', {});
|
||||
}));
|
||||
|
||||
it('should ...', function() {
|
||||
expect(1).to.equal(1);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue