mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-01 14:41:32 +00:00
demo for ng1 app hosting ng2 components
Simple project demonstrating ng2 component hosting within ng1-based application (based on official angular-seed repo).
This commit is contained in:
11
ng1-hosting-ng2/app/components/version/version_test.js
Normal file
11
ng1-hosting-ng2/app/components/version/version_test.js
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
describe('myApp.version module', function() {
|
||||
beforeEach(module('myApp.version'));
|
||||
|
||||
describe('version service', function() {
|
||||
it('should return current version', inject(function(version) {
|
||||
expect(version).toEqual('0.1');
|
||||
}));
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user