mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
Simple project demonstrating ng2 component hosting within ng1-based application (based on official angular-seed repo).
16 lines
319 B
JavaScript
16 lines
319 B
JavaScript
'use strict';
|
|
|
|
describe('myApp.view1 module', function() {
|
|
|
|
beforeEach(module('myApp.view1'));
|
|
|
|
describe('view1 controller', function(){
|
|
|
|
it('should ....', inject(function($controller) {
|
|
//spec body
|
|
var view1Ctrl = $controller('View1Ctrl');
|
|
expect(view1Ctrl).toBeDefined();
|
|
}));
|
|
|
|
});
|
|
}); |