We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf3d57f commit b14aa54Copy full SHA for b14aa54
test/index.spec.ts
@@ -311,7 +311,8 @@ it('should download from url', async () => {
311
const result = await client.downloadFromUrl(
312
'https://releases.ubuntu.com/20.10/ubuntu-20.10-desktop-amd64.iso.torrent',
313
);
314
- expect(result).toContain('/tmp/');
+ // Should be a file path but it is different on different systems
315
+ expect(result).toContain('/');
316
await client.addTorrent(result, { add_paused: true });
317
await pWaitFor(
318
async () => {
0 commit comments