From 1746fa49837a7bde00ea7c22f21b993c5ead8033 Mon Sep 17 00:00:00 2001 From: Ravneet Date: Mon, 25 Sep 2017 20:40:56 +0530 Subject: [PATCH] Added new icon in tests with correct extension --- tests/parsers/test.manifestjson.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/parsers/test.manifestjson.js b/tests/parsers/test.manifestjson.js index 80a9654c035..681e2c819c9 100644 --- a/tests/parsers/test.manifestjson.js +++ b/tests/parsers/test.manifestjson.js @@ -746,11 +746,13 @@ describe('ManifestJSONParser', () => { icons: { 32: 'icons/icon-32.txt', 64: 'icons/icon-64.html', + 128: 'icons/icon-128.png', }, }); const files = { 'icons/icon-32.txt': '89thisistotallysomebinary', 'icons/icon-64.html': '89thisistotallysomebinary', + 'icons/icon-128.png': '89thisistotallysomebinary', }; const manifestJSONParser = new ManifestJSONParser( json, addonLinter.collector, { io: { files } });