Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/common.js')
-rw-r--r--test/common.js26
1 files changed, 21 insertions, 5 deletions
diff --git a/test/common.js b/test/common.js
index 691d178..b68b0f4 100644
--- a/test/common.js
+++ b/test/common.js
@@ -17,18 +17,34 @@ module.exports = {
parsedTorrent: parseTorrent(
fs.readFileSync(path.join(torrents, 'leaves.torrent'))
),
- magnetURI: parseTorrent.toMagnetURI(
- parseTorrent(fs.readFileSync(path.join(torrents, 'leaves.torrent')))
- )
+ magnetURI: parseTorrent.toMagnetURI(parseTorrent(
+ fs.readFileSync(path.join(torrents, 'leaves.torrent'))
+ ))
},
// Folder which contains single file
folder: {
- contentPath: path.join(content, 'folder')
+ contentPath: path.join(content, 'folder'),
+ torrentPath: path.join(torrents, 'folder.torrent'),
+ torrent: fs.readFileSync(path.join(torrents, 'folder.torrent')),
+ parsedTorrent: parseTorrent(
+ fs.readFileSync(path.join(torrents, 'folder.torrent'))
+ ),
+ magnetURI: parseTorrent.toMagnetURI(parseTorrent(
+ fs.readFileSync(path.join(torrents, 'folder.torrent'))
+ ))
},
// Folder which contains multiple files
numbers: {
- contentPath: path.join(content, 'numbers')
+ contentPath: path.join(content, 'numbers'),
+ torrentPath: path.join(torrents, 'numbers.torrent'),
+ torrent: fs.readFileSync(path.join(torrents, 'numbers.torrent')),
+ parsedTorrent: parseTorrent(
+ fs.readFileSync(path.join(torrents, 'numbers.torrent'))
+ ),
+ magnetURI: parseTorrent.toMagnetURI(parseTorrent(
+ fs.readFileSync(path.join(torrents, 'numbers.torrent'))
+ ))
}
}