Skip to content

Commit 761cc82

Browse files
committed
🚨 fix linter errors
1 parent acf6431 commit 761cc82

File tree

3 files changed

+3
-65
lines changed

3 files changed

+3
-65
lines changed

src/app/app.component.spec.ts

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { TestBed } from '@angular/core/testing';
22
import { RouterTestingModule } from '@angular/router/testing';
3+
34
import { AppComponent } from './app.component';
45

56
describe('AppComponent', () => {
@@ -17,19 +18,7 @@ describe('AppComponent', () => {
1718
it('should create the app', () => {
1819
const fixture = TestBed.createComponent(AppComponent);
1920
const app = fixture.componentInstance;
20-
expect(app).toBeTruthy();
21-
});
2221

23-
it(`should have as title 'frontend'`, () => {
24-
const fixture = TestBed.createComponent(AppComponent);
25-
const app = fixture.componentInstance;
26-
expect(app.title).toEqual('frontend');
27-
});
28-
29-
it('should render title', () => {
30-
const fixture = TestBed.createComponent(AppComponent);
31-
fixture.detectChanges();
32-
const compiled = fixture.nativeElement as HTMLElement;
33-
expect(compiled.querySelector('.content span')?.textContent).toContain('frontend app is running!');
22+
expect(app).toBeTruthy();
3423
});
3524
});

src/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ if (environment.production) {
99
}
1010

1111
platformBrowserDynamic().bootstrapModule(AppModule)
12+
// eslint-disable-next-line no-console
1213
.catch(err => console.error(err));

src/polyfills.ts

Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1 @@
1-
/**
2-
* This file includes polyfills needed by Angular and is loaded before the app.
3-
* You can add your own extra polyfills to this file.
4-
*
5-
* This file is divided into 2 sections:
6-
* 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
7-
* 2. Application imports. Files imported after ZoneJS that should be loaded before your main
8-
* file.
9-
*
10-
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that
11-
* automatically update themselves. This includes recent versions of Safari, Chrome (including
12-
* Opera), Edge on the desktop, and iOS and Chrome on mobile.
13-
*
14-
* Learn more in https://angular.io/guide/browser-support
15-
*/
16-
17-
/***************************************************************************************************
18-
* BROWSER POLYFILLS
19-
*/
20-
21-
/**
22-
* By default, zone.js will patch all possible macroTask and DomEvents
23-
* user can disable parts of macroTask/DomEvents patch by setting following flags
24-
* because those flags need to be set before `zone.js` being loaded, and webpack
25-
* will put import in the top of bundle, so user need to create a separate file
26-
* in this directory (for example: zone-flags.ts), and put the following flags
27-
* into that file, and then add the following code before importing zone.js.
28-
* import './zone-flags';
29-
*
30-
* The flags allowed in zone-flags.ts are listed here.
31-
*
32-
* The following flags will work for all browsers.
33-
*
34-
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
35-
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
36-
* (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
37-
*
38-
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
39-
* with the following flag, it will bypass `zone.js` patch for IE/Edge
40-
*
41-
* (window as any).__Zone_enable_cross_context_check = true;
42-
*
43-
*/
44-
45-
/***************************************************************************************************
46-
* Zone JS is required by default for Angular itself.
47-
*/
481
import 'zone.js'; // Included with Angular CLI.
49-
50-
51-
/***************************************************************************************************
52-
* APPLICATION IMPORTS
53-
*/

0 commit comments

Comments
 (0)