Skip to content
Snippets Groups Projects
Commit de1fcffd authored by KPOTY Kpotivi's avatar KPOTY Kpotivi
Browse files

Revert "Merge branch 'feature/add-openapi-generation' into 'main'"

This reverts merge request !2
parent e2b5f21f
No related branches found
No related tags found
No related merge requests found
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ProductComponent } from './product.component';
describe('ProductComponent', () => {
let component: ProductComponent;
let fixture: ComponentFixture<ProductComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [ProductComponent]
});
fixture = TestBed.createComponent(ProductComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
@Component({
selector: 'app-product',
templateUrl: './product.component.html',
styleUrls: ['./product.component.scss']
})
export class ProductComponent {
}
<p>products works!</p>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ProductsComponent } from './products.component';
describe('ProductsComponent', () => {
let component: ProductsComponent;
let fixture: ComponentFixture<ProductsComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [ProductsComponent]
});
fixture = TestBed.createComponent(ProductsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
@Component({
selector: 'app-products',
templateUrl: './products.component.html',
styleUrls: ['./products.component.scss']
})
export class ProductsComponent {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment