Optimizes Imports
This commit is contained in:
@@ -1,21 +1,21 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import {ComponentFixture, TestBed} from '@angular/core/testing';
|
||||
|
||||
import { StackCardComponent } from './stack-card.component';
|
||||
import {StackCardComponent} from './stack-card.component';
|
||||
|
||||
describe('StackCardComponent', () => {
|
||||
let component: StackCardComponent;
|
||||
let fixture: ComponentFixture<StackCardComponent>;
|
||||
let component: StackCardComponent;
|
||||
let fixture: ComponentFixture<StackCardComponent>;
|
||||
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [StackCardComponent]
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [StackCardComponent]
|
||||
});
|
||||
fixture = TestBed.createComponent(StackCardComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
fixture = TestBed.createComponent(StackCardComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import {ComponentFixture, TestBed} from '@angular/core/testing';
|
||||
|
||||
import { StackSliderComponent } from './stack-slider.component';
|
||||
import {StackSliderComponent} from './stack-slider.component';
|
||||
|
||||
describe('StackSliderComponent', () => {
|
||||
let component: StackSliderComponent;
|
||||
let fixture: ComponentFixture<StackSliderComponent>;
|
||||
let component: StackSliderComponent;
|
||||
let fixture: ComponentFixture<StackSliderComponent>;
|
||||
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [StackSliderComponent]
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [StackSliderComponent]
|
||||
});
|
||||
fixture = TestBed.createComponent(StackSliderComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
fixture = TestBed.createComponent(StackSliderComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user