mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-01 11:19:32 -05:00
25 lines
657 B
TypeScript
25 lines
657 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing'
|
|
|
|
import { WelcomeWidgetComponent } from './welcome-widget.component'
|
|
|
|
describe('WelcomeWidgetComponent', () => {
|
|
let component: WelcomeWidgetComponent
|
|
let fixture: ComponentFixture<WelcomeWidgetComponent>
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [WelcomeWidgetComponent],
|
|
}).compileComponents()
|
|
})
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(WelcomeWidgetComponent)
|
|
component = fixture.componentInstance
|
|
fixture.detectChanges()
|
|
})
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy()
|
|
})
|
|
})
|