Skip to content

Commit 79b55a4

Browse files
committed
auto-generated components
1 parent 648c227 commit 79b55a4

20 files changed

+175
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<p>about-us works!</p>

src/app/features/about-us/pages/about-us/about-us.component.scss

Whitespace-only changes.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { ComponentFixture, TestBed } from '@angular/core/testing';
2+
3+
import { AboutUsComponent } from './about-us.component';
4+
5+
describe('AboutUsComponent', () => {
6+
let component: AboutUsComponent;
7+
let fixture: ComponentFixture<AboutUsComponent>;
8+
9+
beforeEach(async () => {
10+
await TestBed.configureTestingModule({
11+
imports: [AboutUsComponent]
12+
})
13+
.compileComponents();
14+
15+
fixture = TestBed.createComponent(AboutUsComponent);
16+
component = fixture.componentInstance;
17+
fixture.detectChanges();
18+
});
19+
20+
it('should create', () => {
21+
expect(component).toBeTruthy();
22+
});
23+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
selector: 'app-about-us',
5+
imports: [],
6+
templateUrl: './about-us.component.html',
7+
styleUrl: './about-us.component.scss'
8+
})
9+
export class AboutUsComponent {
10+
11+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<p>contact-us works!</p>

src/app/features/contact-us/pages/contact-us/contact-us.component.scss

Whitespace-only changes.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { ComponentFixture, TestBed } from '@angular/core/testing';
2+
3+
import { ContactUsComponent } from './contact-us.component';
4+
5+
describe('ContactUsComponent', () => {
6+
let component: ContactUsComponent;
7+
let fixture: ComponentFixture<ContactUsComponent>;
8+
9+
beforeEach(async () => {
10+
await TestBed.configureTestingModule({
11+
imports: [ContactUsComponent]
12+
})
13+
.compileComponents();
14+
15+
fixture = TestBed.createComponent(ContactUsComponent);
16+
component = fixture.componentInstance;
17+
fixture.detectChanges();
18+
});
19+
20+
it('should create', () => {
21+
expect(component).toBeTruthy();
22+
});
23+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
selector: 'app-contact-us',
5+
imports: [],
6+
templateUrl: './contact-us.component.html',
7+
styleUrl: './contact-us.component.scss'
8+
})
9+
export class ContactUsComponent {
10+
11+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<p>home works!</p>

src/app/features/home/pages/home/home.component.scss

Whitespace-only changes.

0 commit comments

Comments
 (0)