diff --git a/apps/forms/control-value-accessor/src/app/app.component.spec.ts b/apps/forms/control-value-accessor/src/app/app.component.spec.ts deleted file mode 100644 index 3905d62..0000000 --- a/apps/forms/control-value-accessor/src/app/app.component.spec.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { render } from '@testing-library/angular'; -import { AppComponent } from './app.component'; - -describe('AppComponent', () => { - test('...', async () => { - await render(AppComponent); - }); -}); diff --git a/apps/forms/control-value-accessor/src/app/app.config.ts b/apps/forms/control-value-accessor/src/app/app.config.ts deleted file mode 100644 index 81a6edd..0000000 --- a/apps/forms/control-value-accessor/src/app/app.config.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { ApplicationConfig } from '@angular/core'; - -export const appConfig: ApplicationConfig = { - providers: [], -}; diff --git a/apps/forms/control-value-accessor/src/main.ts b/apps/forms/control-value-accessor/src/main.ts index 8882c45..31c5da4 100644 --- a/apps/forms/control-value-accessor/src/main.ts +++ b/apps/forms/control-value-accessor/src/main.ts @@ -1,7 +1,4 @@ import { bootstrapApplication } from '@angular/platform-browser'; -import { appConfig } from './app/app.config'; import { AppComponent } from './app/app.component'; -bootstrapApplication(AppComponent, appConfig).catch((err) => - console.error(err), -); +bootstrapApplication(AppComponent).catch((err) => console.error(err));