|
- import { ComponentFixture, TestBed } from '@angular/core/testing';
-
- import { OptionsShetComponent } from './options-shet.component';
-
- describe('OptionsShetComponent', () => {
- let component: OptionsShetComponent;
- let fixture: ComponentFixture<OptionsShetComponent>;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- declarations: [ OptionsShetComponent ]
- })
- .compileComponents();
- });
-
- beforeEach(() => {
- fixture = TestBed.createComponent(OptionsShetComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|