From 2eac89c0583d89b3d0e6739486a18c8522c26f08 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Wed, 10 Feb 2021 13:58:29 -0330 Subject: [PATCH] Remove unused test module (#338) This old test file is a leftover remnant of an old set of unit tests. It's no longer useful, and has never been run on CI or as part of the test command as far as I can see. It may have been accidentally committed in the first place. --- tests/test.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 tests/test.js diff --git a/tests/test.js b/tests/test.js deleted file mode 100644 index 318229964a5..00000000000 --- a/tests/test.js +++ /dev/null @@ -1,15 +0,0 @@ -const { TokenRatesController } = require('./dist'); - -const assets = new TokenRatesController({ - disabled: false, - interval: 1000, - nativeCurrency: 'usd', - tokens: [ - { address: '0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359' }, - { address: '0x960b236A07cf122663c4303350609A66A7B288C0' }, - { address: '0xB8c77482e45F1F44dE1745F52C74426C631bDD52' }, - { address: '0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2' }, - ], -}); - -assets.subscribe(console.log);