refactor: remove unused modules

This commit is contained in:
Stanislav
2023-12-08 16:46:41 +03:00
parent e18e812363
commit 8d9e5c92c3
3 changed files with 1 additions and 17 deletions

View File

@@ -1,8 +0,0 @@
import { render } from '@testing-library/angular';
import { AppComponent } from './app.component';
describe('AppComponent', () => {
test('...', async () => {
await render(AppComponent);
});
});

View File

@@ -1,5 +0,0 @@
import { ApplicationConfig } from '@angular/core';
export const appConfig: ApplicationConfig = {
providers: [],
};

View File

@@ -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));