Add update application component and danger color for buttons.

This commit is contained in:
2021-08-07 23:51:44 +02:00
parent 82053e4002
commit 84d66ec45a
13 changed files with 255 additions and 100 deletions

View File

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