This commit is contained in:
Olu Amey
2020-01-11 00:24:55 -05:00
parent 887c6f4805
commit b69ecafbab
8 changed files with 88 additions and 0 deletions
@@ -0,0 +1,3 @@
<p>
linkstart works!
</p>
@@ -0,0 +1,27 @@
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { LinkstartComponent } from './linkstart.component';
describe('LinkstartComponent', () => {
let component: LinkstartComponent;
let fixture: ComponentFixture<LinkstartComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ LinkstartComponent ],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(LinkstartComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
@@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-linkstart',
templateUrl: './linkstart.component.html',
styleUrls: ['./linkstart.component.scss'],
})
export class LinkstartComponent implements OnInit {
constructor() { }
ngOnInit() {}
}
@@ -0,0 +1,3 @@
<p>
pagestart works!
</p>
@@ -0,0 +1,27 @@
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { PagestartComponent } from './pagestart.component';
describe('PagestartComponent', () => {
let component: PagestartComponent;
let fixture: ComponentFixture<PagestartComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ PagestartComponent ],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(PagestartComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
@@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-pagestart',
templateUrl: './pagestart.component.html',
styleUrls: ['./pagestart.component.scss'],
})
export class PagestartComponent implements OnInit {
constructor() { }
ngOnInit() {}
}