mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-23 21:20:56 +03:00
Downloads manager now uses device fingerprint as identifier rather than a randomly generated sessionID
26 lines
679 B
TypeScript
26 lines
679 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { AddUserDialogComponent } from './add-user-dialog.component';
|
|
|
|
describe('AddUserDialogComponent', () => {
|
|
let component: AddUserDialogComponent;
|
|
let fixture: ComponentFixture<AddUserDialogComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ AddUserDialogComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(AddUserDialogComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|