Skip to content

Commit

Permalink
removed skip test funcitonality (#99)
Browse files Browse the repository at this point in the history
feature requires an if statement in every `setup`. Instead of adding further complexity, preventing the suite from running is recommended. Breaking change
  • Loading branch information
e111077 committed Mar 21, 2017
1 parent d1e897c commit 4fe31d0
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions test/app-storage-compatibility-suite.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
unsetValue: function(storage) {
storage.set('data', null);
return storage.transactionsComplete;
},
skipTests: false
}
};

function awaitStoredValue(storage, path) {
Expand All @@ -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;

Expand Down

0 comments on commit 4fe31d0

Please sign in to comment.