Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

26 linhas
662B

  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { OptionsShetComponent } from './options-shet.component';
  3. describe('OptionsShetComponent', () => {
  4. let component: OptionsShetComponent;
  5. let fixture: ComponentFixture<OptionsShetComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [ OptionsShetComponent ]
  9. })
  10. .compileComponents();
  11. });
  12. beforeEach(() => {
  13. fixture = TestBed.createComponent(OptionsShetComponent);
  14. component = fixture.componentInstance;
  15. fixture.detectChanges();
  16. });
  17. it('should create', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });