From 4ce90d0c57af35fac263ddc515c7e6d27d51af71 Mon Sep 17 00:00:00 2001 From: Nathan Downs Date: Mon, 4 Jun 2018 17:42:09 -0700 Subject: [PATCH] Don't use ES6 string templates in tests --- 2/test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2/test/test.js b/2/test/test.js index 2d77bb38..4c7e360e 100644 --- a/2/test/test.js +++ b/2/test/test.js @@ -1917,7 +1917,7 @@ wru.test([{ allIosEmoji.forEach(function (emoji) { div.innerHTML = emoji; twemoji.parse(div); - wru.assert(`${emoji} recognized as graphical`, + wru.assert('' + emoji + 'recognized as graphical', div.firstChild.className === 'emoji' && div.firstChild.getAttribute('draggable') === 'false' && div.firstChild.getAttribute('alt') === emoji