1
0
Fork 0
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:
Mumshad Mannambeth 2017-07-20 17:26:37 -04:00
parent d0581b978b
commit 599c8a7662
8 changed files with 379 additions and 364 deletions

View file

@ -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);
});
});