feat: add TermsOfServiceComponent with template, styles, and tests
This commit is contained in:
parent
1ab2424710
commit
37b8827007
@ -0,0 +1 @@
|
|||||||
|
<p>terms-of-service works!</p>
|
@ -0,0 +1,23 @@
|
|||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { TermsOfServiceComponent } from './terms-of-service.component';
|
||||||
|
|
||||||
|
describe('TermsOfServiceComponent', () => {
|
||||||
|
let component: TermsOfServiceComponent;
|
||||||
|
let fixture: ComponentFixture<TermsOfServiceComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
imports: [TermsOfServiceComponent]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
|
||||||
|
fixture = TestBed.createComponent(TermsOfServiceComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,11 @@
|
|||||||
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-terms-of-service',
|
||||||
|
imports: [],
|
||||||
|
templateUrl: './terms-of-service.component.html',
|
||||||
|
styleUrl: './terms-of-service.component.css'
|
||||||
|
})
|
||||||
|
export class TermsOfServiceComponent {
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user