#68 add page moving and input param

tslint rule withespace type
This commit is contained in:
Eugenio Romano
2016-05-24 00:17:21 +01:00
parent d83270e176
commit 2060982ec7
16 changed files with 232 additions and 122 deletions

View File

@@ -34,7 +34,7 @@ describe('AlfrescoUploadButton', () => {
});
it('should render upload-single-file button as default',
injectAsync([TestComponentBuilder], (tcb: TestComponentBuilder) => {
injectAsync([TestComponentBuilder], (tcb:TestComponentBuilder) => {
return tcb
.createAsync(UploadButtonComponent)
.then((fixture) => {
@@ -45,7 +45,7 @@ describe('AlfrescoUploadButton', () => {
}));
it('should render upload-multiple-file button if multipleFiles is true',
injectAsync([TestComponentBuilder], (tcb: TestComponentBuilder) => {
injectAsync([TestComponentBuilder], (tcb:TestComponentBuilder) => {
return tcb
.createAsync(UploadButtonComponent)
.then((fixture) => {
@@ -58,7 +58,7 @@ describe('AlfrescoUploadButton', () => {
}));
it('should render an uploadFolder button if uploadFolder is true',
injectAsync([TestComponentBuilder], (tcb: TestComponentBuilder) => {
injectAsync([TestComponentBuilder], (tcb:TestComponentBuilder) => {
return tcb
.createAsync(UploadButtonComponent)
.then((fixture) => {
@@ -70,7 +70,7 @@ describe('AlfrescoUploadButton', () => {
});
}));
it('should call onFilesAdded method', injectAsync([TestComponentBuilder], (tcb: TestComponentBuilder) => {
it('should call onFilesAdded method', injectAsync([TestComponentBuilder], (tcb:TestComponentBuilder) => {
return tcb
.createAsync(UploadButtonComponent)
.then((fixture) => {
@@ -88,8 +88,8 @@ describe('AlfrescoUploadButton', () => {
});
}));
it('should render dialog box with css class show ',
injectAsync([TestComponentBuilder], (tcb: TestComponentBuilder) => {
it('should render dialog box with css class show',
injectAsync([TestComponentBuilder], (tcb:TestComponentBuilder) => {
return tcb
.createAsync(UploadButtonComponent)
.then((fixture) => {

View File

@@ -111,9 +111,10 @@
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator"
"check-separator",
"check-type",
"check-module"
]
}
}