Skip to content

Commit cb70876

Browse files
Generate 1000 components
1 parent 105ddb8 commit cb70876

File tree

4,002 files changed

+37002
-483
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,002 files changed

+37002
-483
lines changed

src/app/app.component.html

Lines changed: 1001 additions & 482 deletions
Large diffs are not rendered by default.

src/app/app.module.ts

Lines changed: 2001 additions & 1 deletion
Large diffs are not rendered by default.

src/app/component1/component1.component.css

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

src/app/component10/component10.component.css

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

0 commit comments

Comments
 (0)