sync api tests running, removed unused pieces of code

This commit is contained in:
Marek Kotewicz
2015-01-21 20:43:20 +01:00
parent fc986a3fbe
commit ceb4357a8d
10 changed files with 9 additions and 173 deletions

View File

@ -8,7 +8,7 @@ var methodExists = function (object, method) {
var propertyExists = function (object, property) {
it('should have property ' + property + ' implemented', function() {
assert.equal('object', typeof object[property], 'property ' + property + ' is not implemented');
assert.notEqual('undefined', typeof object[property], 'property ' + property + ' is not implemented');
});
};