Commit 9cb82c9853b8e9ec2e522170165a89333534b774
1 parent
12039f0c
Exists in
master
and in
26 other branches
removing warning
Showing
2 changed files
with
6 additions
and
7 deletions
Show diff stats
src/app/index.ts
... | ... | @@ -15,7 +15,7 @@ declare var moment: any; |
15 | 15 | let noosferoApp: any = bundle("noosferoApp", MainComponent, ["ngAnimate", "ngCookies", "ngStorage", "ngTouch", |
16 | 16 | "ngSanitize", "ngMessages", "ngAria", "restangular", |
17 | 17 | "ui.router", "ui.bootstrap", "toastr", "ngCkeditor", |
18 | - "angular-bind-html-compile","angularMoment", "angular.filter", "akoenig.deckgrid", | |
18 | + "angular-bind-html-compile", "angularMoment", "angular.filter", "akoenig.deckgrid", | |
19 | 19 | "angular-timeline", "duScroll", "oitozero.ngSweetAlert", |
20 | 20 | "pascalprecht.translate", "tmh.dynamicLocale", "angularLoad", |
21 | 21 | "angular-click-outside"]).publish(); | ... | ... |
src/spec/component-test-helper.ts
... | ... | @@ -6,12 +6,12 @@ import { ComponentFixture } from 'ng-forward/cjs/testing/test-component-builder' |
6 | 6 | /** |
7 | 7 | * @ngdoc object |
8 | 8 | * @name spec.ComponentTestHelper |
9 | - * @description | |
10 | - * | |
9 | + * @description | |
10 | + * | |
11 | 11 | * Helper class for creating tests. It encapsulates the TestComponentBuilder initialization, |
12 | 12 | * allowing the test to be DRY. To use, one must declare a beforeEach function in the |
13 | 13 | * test, and inside construct this object like: |
14 | - * | |
14 | + * | |
15 | 15 | * <pre> |
16 | 16 | * let helper = let helper : ComponentTestHelper; |
17 | 17 | * beforeEach( (done) => { |
... | ... | @@ -35,7 +35,7 @@ export class ComponentTestHelper<T extends any> { |
35 | 35 | * @propertyOf spec.ComponentTestHelper |
36 | 36 | * @description |
37 | 37 | * The NgForward TestComponentBuilder |
38 | - */ | |
38 | + */ | |
39 | 39 | tcb: TestComponentBuilder; |
40 | 40 | /** |
41 | 41 | * @ngdoc property |
... | ... | @@ -52,7 +52,7 @@ export class ComponentTestHelper<T extends any> { |
52 | 52 | * @description |
53 | 53 | * The debugElement representing a JQuery element attached to the component |
54 | 54 | * on mock page. |
55 | - */ | |
55 | + */ | |
56 | 56 | debugElement: INgForwardJQuery; |
57 | 57 | |
58 | 58 | /** |
... | ... | @@ -159,4 +159,3 @@ export function createClass({ |
159 | 159 | } |
160 | 160 | return Test; |
161 | 161 | } |
162 | - | ... | ... |