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