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