feat: Added file formatting
This commit is contained in:
@@ -1,29 +1,25 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing'
|
||||
|
||||
import { ExtraComponent } from './extra.component';
|
||||
import { MatDialogModule } from '@angular/material/dialog';
|
||||
import { MatListModule } from '@angular/material/list';
|
||||
import { ExtraComponent } from './extra.component'
|
||||
import { MatDialogModule } from '@angular/material/dialog'
|
||||
import { MatListModule } from '@angular/material/list'
|
||||
|
||||
describe('ExtraComponent', () => {
|
||||
let component: ExtraComponent;
|
||||
let fixture: ComponentFixture<ExtraComponent>;
|
||||
let component: ExtraComponent
|
||||
let fixture: ComponentFixture<ExtraComponent>
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ExtraComponent],
|
||||
imports: [
|
||||
MatDialogModule,
|
||||
MatListModule
|
||||
]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ExtraComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
imports: [MatDialogModule, MatListModule],
|
||||
}).compileComponents()
|
||||
|
||||
fixture = TestBed.createComponent(ExtraComponent)
|
||||
component = fixture.componentInstance
|
||||
fixture.detectChanges()
|
||||
})
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
expect(component).toBeTruthy()
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user