From d0f70d6e8e35340429412975b881a8c37da516c2 Mon Sep 17 00:00:00 2001 From: Jared Green Date: Wed, 23 Oct 2019 15:26:26 -0500 Subject: [PATCH] Update standalone tests to check for 14, 22, and 30 sizes --- test/npmap-symbol-library.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/npmap-symbol-library.test.js b/test/npmap-symbol-library.test.js index 51445ca6..2e626b21 100644 --- a/test/npmap-symbol-library.test.js +++ b/test/npmap-symbol-library.test.js @@ -29,7 +29,7 @@ test('NPMap Symbol Library', function (t) { t.equal(typeof f.icon, 'string', 'icon property'); t.equal(typeof f.release, 'string', 'release property'); t.equal(typeof f.tags, 'object', 'tags property'); - [16, 24, 32].forEach(function (size) { + [14, 22, 30].forEach(function (size) { t.doesNotThrow(function () { fs.statSync(__dirname + '/../src/standalone/' + f.icon + '-' + size + '.svg'); fs.statSync(__dirname + '/../renders/standalone/' + f.icon + '-' + size + '.png');