From 96945944da9e47f2f10af0cf7129ab32c0ac3492 Mon Sep 17 00:00:00 2001 From: Brian Kardell Date: Tue, 23 Jul 2024 11:34:14 -0400 Subject: [PATCH] Update karma.conf.js to omit the words polyfill.io --- karma.conf.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/karma.conf.js b/karma.conf.js index 8a11506..605e7e6 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -24,10 +24,10 @@ module.exports = function(config) { // https://mochajs.org/#exclusive-tests singleRun: true, // Use the mocha test framework with chai assertions. - // Use polyfills loaded from Polyfill.io. + // Use polyfills loaded // Use an html fixture loader. frameworks: ['mocha', 'chai', 'polyfill', 'fixture'], - // List of polyfills to load from Polyfill.io. + // List of polyfills to load polyfill: [ 'Array.from', // Used in tests. 'Promise', @@ -90,4 +90,4 @@ module.exports = function(config) { reporters: ['spec', 'saucelabs'], }); } -}; \ No newline at end of file +};