Skip to content

Commit

Permalink
test: remove test strict checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Wendell committed Apr 21, 2020
1 parent dd1ef9b commit eb20675
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions components/select/select.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ export class NzSelectComponent implements ControlValueAccessor, OnInit, AfterVie
@Input() nzDropdownRender: TemplateRef<NzSafeAny> | null = null;
@Input() nzCustomTemplate: TemplateRef<{ $implicit: NzSelectItemInterface }> | null = null;
@Input()
@WithConfig<TemplateRef<NzSafeAny> | string | null>(NZ_CONFIG_COMPONENT_NAME, null)
nzSuffixIcon: TemplateRef<NzSafeAny> | string | null;
@WithConfig<TemplateRef<NzSafeAny> | string | null>(NZ_CONFIG_COMPONENT_NAME)
nzSuffixIcon: TemplateRef<NzSafeAny> | string | null = null;
@Input() nzClearIcon: TemplateRef<NzSafeAny> | null = null;
@Input() nzRemoveIcon: TemplateRef<NzSafeAny> | null = null;
@Input() nzMenuItemSelectedIcon: TemplateRef<NzSafeAny> | null = null;
Expand Down
13 changes: 10 additions & 3 deletions components/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"types": [
"jasmine"
]
"noUnusedParameters": false,
"noUnusedLocals": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"noFallthroughCasesInSwitch": false,
"skipLibCheck": false,
"strictFunctionTypes": false,
"strictNullChecks": false,
"strictPropertyInitialization": false
},
"files": [
"test.ts",
Expand Down

0 comments on commit eb20675

Please sign in to comment.