Skip to content

Commit

Permalink
Generate 1000 components
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-wosinek committed Mar 25, 2023
1 parent 105ddb8 commit cb70876
Show file tree
Hide file tree
Showing 4,002 changed files with 37,002 additions and 483 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1,483 changes: 1,001 additions & 482 deletions src/app/app.component.html

Large diffs are not rendered by default.

2,002 changes: 2,001 additions & 1 deletion src/app/app.module.ts

Large diffs are not rendered by default.

Empty file.
1 change: 1 addition & 0 deletions src/app/component1/component1.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component1 works!</p>
23 changes: 23 additions & 0 deletions src/app/component1/component1.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component1Component } from './component1.component';

describe('Component1Component', () => {
let component: Component1Component;
let fixture: ComponentFixture<Component1Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component1Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component1Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component1/component1.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component1',
templateUrl: './component1.component.html',
styleUrls: ['./component1.component.css']
})
export class Component1Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component10/component10.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component10 works!</p>
23 changes: 23 additions & 0 deletions src/app/component10/component10.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component10Component } from './component10.component';

describe('Component10Component', () => {
let component: Component10Component;
let fixture: ComponentFixture<Component10Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component10Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component10Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component10/component10.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component10',
templateUrl: './component10.component.html',
styleUrls: ['./component10.component.css']
})
export class Component10Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component100/component100.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component100 works!</p>
23 changes: 23 additions & 0 deletions src/app/component100/component100.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component100Component } from './component100.component';

describe('Component100Component', () => {
let component: Component100Component;
let fixture: ComponentFixture<Component100Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component100Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component100Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component100/component100.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component100',
templateUrl: './component100.component.html',
styleUrls: ['./component100.component.css']
})
export class Component100Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component1000/component1000.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component1000 works!</p>
23 changes: 23 additions & 0 deletions src/app/component1000/component1000.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component1000Component } from './component1000.component';

describe('Component1000Component', () => {
let component: Component1000Component;
let fixture: ComponentFixture<Component1000Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component1000Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component1000Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component1000/component1000.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component1000',
templateUrl: './component1000.component.html',
styleUrls: ['./component1000.component.css']
})
export class Component1000Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component101/component101.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component101 works!</p>
23 changes: 23 additions & 0 deletions src/app/component101/component101.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component101Component } from './component101.component';

describe('Component101Component', () => {
let component: Component101Component;
let fixture: ComponentFixture<Component101Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component101Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component101Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component101/component101.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component101',
templateUrl: './component101.component.html',
styleUrls: ['./component101.component.css']
})
export class Component101Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component102/component102.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component102 works!</p>
23 changes: 23 additions & 0 deletions src/app/component102/component102.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component102Component } from './component102.component';

describe('Component102Component', () => {
let component: Component102Component;
let fixture: ComponentFixture<Component102Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component102Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component102Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component102/component102.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component102',
templateUrl: './component102.component.html',
styleUrls: ['./component102.component.css']
})
export class Component102Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component103/component103.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component103 works!</p>
23 changes: 23 additions & 0 deletions src/app/component103/component103.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component103Component } from './component103.component';

describe('Component103Component', () => {
let component: Component103Component;
let fixture: ComponentFixture<Component103Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component103Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component103Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component103/component103.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component103',
templateUrl: './component103.component.html',
styleUrls: ['./component103.component.css']
})
export class Component103Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component104/component104.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component104 works!</p>
23 changes: 23 additions & 0 deletions src/app/component104/component104.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component104Component } from './component104.component';

describe('Component104Component', () => {
let component: Component104Component;
let fixture: ComponentFixture<Component104Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component104Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component104Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component104/component104.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component104',
templateUrl: './component104.component.html',
styleUrls: ['./component104.component.css']
})
export class Component104Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component105/component105.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component105 works!</p>
23 changes: 23 additions & 0 deletions src/app/component105/component105.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component105Component } from './component105.component';

describe('Component105Component', () => {
let component: Component105Component;
let fixture: ComponentFixture<Component105Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component105Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component105Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component105/component105.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component105',
templateUrl: './component105.component.html',
styleUrls: ['./component105.component.css']
})
export class Component105Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component106/component106.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component106 works!</p>
23 changes: 23 additions & 0 deletions src/app/component106/component106.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component106Component } from './component106.component';

describe('Component106Component', () => {
let component: Component106Component;
let fixture: ComponentFixture<Component106Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component106Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component106Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
10 changes: 10 additions & 0 deletions src/app/component106/component106.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-component106',
templateUrl: './component106.component.html',
styleUrls: ['./component106.component.css']
})
export class Component106Component {

}
Empty file.
1 change: 1 addition & 0 deletions src/app/component107/component107.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>component107 works!</p>
23 changes: 23 additions & 0 deletions src/app/component107/component107.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { Component107Component } from './component107.component';

describe('Component107Component', () => {
let component: Component107Component;
let fixture: ComponentFixture<Component107Component>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ Component107Component ]
})
.compileComponents();

fixture = TestBed.createComponent(Component107Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});

0 comments on commit cb70876

Please sign in to comment.