mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
29 lines
776 B
TypeScript
29 lines
776 B
TypeScript
|
|
/* tslint:disable:no-unused-variable */
|
||
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
import { By } from '@angular/platform-browser';
|
||
|
|
import { DebugElement } from '@angular/core';
|
||
|
|
|
||
|
|
import { CheckboxComponent } from './checkbox.component';
|
||
|
|
|
||
|
|
describe('CheckboxComponent', () => {
|
||
|
|
let component: CheckboxComponent;
|
||
|
|
let fixture: ComponentFixture<CheckboxComponent>;
|
||
|
|
|
||
|
|
beforeEach(async(() => {
|
||
|
|
TestBed.configureTestingModule({
|
||
|
|
declarations: [ CheckboxComponent ]
|
||
|
|
})
|
||
|
|
.compileComponents();
|
||
|
|
}));
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
fixture = TestBed.createComponent(CheckboxComponent);
|
||
|
|
component = fixture.componentInstance;
|
||
|
|
fixture.detectChanges();
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should create', () => {
|
||
|
|
expect(component).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|