|
@@ -0,0 +1,25 @@
|
|
|
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
+
|
|
|
+import { ClrTextComponent } from './clr-text.component';
|
|
|
+
|
|
|
+describe('TextComponent', () => {
|
|
|
+ let component: ClrTextComponent;
|
|
|
+ let fixture: ComponentFixture<ClrTextComponent>;
|
|
|
+
|
|
|
+ beforeEach(async(() => {
|
|
|
+ TestBed.configureTestingModule({
|
|
|
+ declarations: [ ClrTextComponent ]
|
|
|
+ })
|
|
|
+ .compileComponents();
|
|
|
+ }));
|
|
|
+
|
|
|
+ beforeEach(() => {
|
|
|
+ fixture = TestBed.createComponent(ClrTextComponent);
|
|
|
+ component = fixture.componentInstance;
|
|
|
+ fixture.detectChanges();
|
|
|
+ });
|
|
|
+
|
|
|
+ it('should create', () => {
|
|
|
+ expect(component).toBeTruthy();
|
|
|
+ });
|
|
|
+});
|