Skip to content
Snippets Groups Projects
Commit 5edcc8f2 authored by Kawtar Laariche's avatar Kawtar Laariche
Browse files

#19: add delete model component

parent efac52a2
No related branches found
No related tags found
No related merge requests found
<p>delete-model-page works!</p>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { DeleteModelPageComponent } from './delete-model-page.component';
describe('DeleteModelPageComponent', () => {
let component: DeleteModelPageComponent;
let fixture: ComponentFixture<DeleteModelPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [DeleteModelPageComponent]
})
.compileComponents();
fixture = TestBed.createComponent(DeleteModelPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'gp-delete-model-page',
standalone: true,
imports: [CommonModule],
templateUrl: './delete-model-page.component.html',
styleUrl: './delete-model-page.component.scss'
})
export class DeleteModelPageComponent {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment