examples: update angular-example to Angular v13 (#3325)

* examples: update angular-example to Angular v13

* meta: upgrade TS version accross the board

* meta: upgrade ESLint packages

* Fix angular-examples tests

* bump lock file

* fix type conflict

* Upgrade `ng-packagr`
This commit is contained in:
Antoine du Hamel 2021-11-22 19:12:56 +01:00 committed by GitHub
parent 7003ac48aa
commit cd8af60bfb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 3478 additions and 4049 deletions

View file

@ -26,6 +26,6 @@ describe('AppComponent', () => {
const fixture = TestBed.createComponent(AppComponent)
fixture.detectChanges()
const compiled = fixture.nativeElement
expect(compiled.querySelector('.content span').textContent).toContain('angular-example app is running!')
expect(compiled.textContent).toContain('Uppy Angular Example')
})
})