mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 06:13:03 -05:00
refactor: remove unused modules
This commit is contained in:
@@ -1,8 +0,0 @@
|
|||||||
import { render } from '@testing-library/angular';
|
|
||||||
import { AppComponent } from './app.component';
|
|
||||||
|
|
||||||
describe('AppComponent', () => {
|
|
||||||
test('...', async () => {
|
|
||||||
await render(AppComponent);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
import { ApplicationConfig } from '@angular/core';
|
|
||||||
|
|
||||||
export const appConfig: ApplicationConfig = {
|
|
||||||
providers: [],
|
|
||||||
};
|
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
import { bootstrapApplication } from '@angular/platform-browser';
|
import { bootstrapApplication } from '@angular/platform-browser';
|
||||||
import { appConfig } from './app/app.config';
|
|
||||||
import { AppComponent } from './app/app.component';
|
import { AppComponent } from './app/app.component';
|
||||||
|
|
||||||
bootstrapApplication(AppComponent, appConfig).catch((err) =>
|
bootstrapApplication(AppComponent).catch((err) => console.error(err));
|
||||||
console.error(err),
|
|
||||||
);
|
|
||||||
|
|||||||
Reference in New Issue
Block a user