From 7cdfc73f0e1ab7c8c0c54e1f00d03ea9477ef30d Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Tue, 4 Jul 2017 02:16:01 -0700 Subject: [PATCH] Cosmetic change --- test/nightwatch/environment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/nightwatch/environment.js b/test/nightwatch/environment.js index 0ed3a1c..4503a3f 100644 --- a/test/nightwatch/environment.js +++ b/test/nightwatch/environment.js @@ -2,6 +2,6 @@ var assert = require('assert'); module.exports = { 'Fetch Web API' : function(browser) { - assert(typeof fetch == "function"); + assert(typeof fetch == "function", "fetch function is not available"); } };