mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
Simple project demonstrating ng2 component hosting within ng1-based application (based on official angular-seed repo).
12 lines
268 B
JavaScript
12 lines
268 B
JavaScript
'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');
|
|
}));
|
|
});
|
|
});
|