mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-31 18:47:11 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			612 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			612 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { ComponentFixture, TestBed } from '@angular/core/testing';
 | |
| 
 | |
| import { LogsComponent } from './logs.component';
 | |
| 
 | |
| describe('LogsComponent', () => {
 | |
|   let component: LogsComponent;
 | |
|   let fixture: ComponentFixture<LogsComponent>;
 | |
| 
 | |
|   beforeEach(async () => {
 | |
|     await TestBed.configureTestingModule({
 | |
|       declarations: [ LogsComponent ]
 | |
|     })
 | |
|     .compileComponents();
 | |
|   });
 | |
| 
 | |
|   beforeEach(() => {
 | |
|     fixture = TestBed.createComponent(LogsComponent);
 | |
|     component = fixture.componentInstance;
 | |
|     fixture.detectChanges();
 | |
|   });
 | |
| 
 | |
|   it('should create', () => {
 | |
|     expect(component).toBeTruthy();
 | |
|   });
 | |
| });
 |