From c780cd746cb814589453612a769bd9e2bee6908f Mon Sep 17 00:00:00 2001 From: Scott Cooper Date: Mon, 15 Jun 2020 22:22:04 -0700 Subject: [PATCH] enable label test --- test/index.spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/index.spec.ts b/test/index.spec.ts index c3e55ce..df984ea 100644 --- a/test/index.spec.ts +++ b/test/index.spec.ts @@ -106,8 +106,7 @@ describe('Transmission', () => { expect(torrent.downloadSpeed).toBe(0); expect(torrent.eta).toBe(-1); expect(torrent.isCompleted).toBe(false); - // TODO: labels should be working in transmission 3.0 - // expect(torrent.label).toBe(undefined); + expect(torrent.label).toBe('test'); expect(torrent.name).toBe(torrentName); expect(torrent.progress).toBeGreaterThanOrEqual(0); expect(torrent.queuePosition).toBe(0);