From 4fe31d012e8881ac35c1004fdb522ec94883b9ef Mon Sep 17 00:00:00 2001 From: Elliott Marquez Date: Tue, 21 Mar 2017 16:03:49 -0700 Subject: [PATCH] removed skip test funcitonality (#99) feature requires an if statement in every `setup`. Instead of adding further complexity, preventing the suite from running is recommended. Breaking change --- test/app-storage-compatibility-suite.html | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/test/app-storage-compatibility-suite.html b/test/app-storage-compatibility-suite.html index dd1cb03..4b7b004 100644 --- a/test/app-storage-compatibility-suite.html +++ b/test/app-storage-compatibility-suite.html @@ -23,8 +23,7 @@ unsetValue: function(storage) { storage.set('data', null); return storage.transactionsComplete; - }, - skipTests: false + } }; function awaitStoredValue(storage, path) { @@ -41,12 +40,6 @@ } suite('app storage compatibility: <' + context.tagName + '>', function() { - setup(function() { - if (context.skipTests) { - this.skip(); - } - }); - suite('basic storage scenarios', function() { var storage;