- Add offline detection with navigator.onLine and auto-pause/resume - Implement chunked upload for files >100MB with localStorage persistence - Add download by artifact ID input field in PackagePage - Add 10 security tests for path traversal and malformed requests - Fix test setup globalThis reference
This commit is contained in:
@@ -18,7 +18,7 @@ class MockDataTransfer implements DataTransfer {
|
||||
setDragImage(): void {}
|
||||
}
|
||||
|
||||
Object.defineProperty(global, 'DataTransfer', {
|
||||
Object.defineProperty(globalThis, 'DataTransfer', {
|
||||
value: MockDataTransfer,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user