Adding parsing

This commit is contained in:
2020-07-06 13:01:41 +02:00
parent a8548007d5
commit 9a8c414936
28 changed files with 587 additions and 173 deletions

View File

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