Optimizes Imports

This commit is contained in:
2023-12-29 07:12:29 -03:00
parent 7a0fd959a0
commit d08255b31f
45 changed files with 222 additions and 368 deletions

View File

@@ -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();
});
});

View File

@@ -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();
});
});