mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-19 09:34:02 +00:00
* 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`
31 lines
908 B
TypeScript
31 lines
908 B
TypeScript
import { TestBed } from '@angular/core/testing'
|
|
import { AppComponent } from './app.component'
|
|
|
|
describe('AppComponent', () => {
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [
|
|
AppComponent,
|
|
],
|
|
}).compileComponents()
|
|
})
|
|
|
|
it('should create the app', () => {
|
|
const fixture = TestBed.createComponent(AppComponent)
|
|
const app = fixture.componentInstance
|
|
expect(app).toBeTruthy()
|
|
})
|
|
|
|
it(`should have as title 'angular-example'`, () => {
|
|
const fixture = TestBed.createComponent(AppComponent)
|
|
const app = fixture.componentInstance
|
|
expect(app.title).toEqual('angular-example')
|
|
})
|
|
|
|
it('should render title', () => {
|
|
const fixture = TestBed.createComponent(AppComponent)
|
|
fixture.detectChanges()
|
|
const compiled = fixture.nativeElement
|
|
expect(compiled.textContent).toContain('Uppy Angular Example')
|
|
})
|
|
})
|