(file)
| 73 | } |
| 74 | |
| 75 | readFile(file) { |
| 76 | this.numUploadsInProgress++; |
| 77 | return readUploadFile(file, this.onLoadEnd) |
| 78 | .catch(error => { |
| 79 | this.onLoadEnd(); |
| 80 | throw error; |
| 81 | }); |
| 82 | } |
| 83 | |
| 84 | inProgress() { |
| 85 | return this.actions !== null; |
no test coverage detected