disable all unused tests

This commit is contained in:
Sylvain MATHIEU
2022-03-07 09:40:41 +01:00
parent 87a0b951a7
commit c5434a4e99
49 changed files with 0 additions and 984 deletions

View File

@ -1,25 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ActionButtonComponent } from './action-button.component';
describe('ActionButtonComponent', () => {
let component: ActionButtonComponent;
let fixture: ComponentFixture<ActionButtonComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ActionButtonComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(ActionButtonComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});