mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-03-09 23:38:54 +00:00
17 lines
409 B
JavaScript
17 lines
409 B
JavaScript
'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);
|
|
});
|
|
});
|