Skip to content

Commit

Permalink
Fix broken tests - because any error callback in async.parallel stops…
Browse files Browse the repository at this point in the history
… execution
  • Loading branch information
matiassingers committed Jan 26, 2015
1 parent 37de9e3 commit 69adef3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ var ipaMetadataParser = require('./');
describe('should parse .ipa file', function(){
it('should contain the correct data', function(done) {
ipaMetadataParser('tests/fixtures/testApp.ipa', function(err, data) {
assert.equal(err, void 0);

assert.equal(data.metadata['CFBundleDisplayName'], 'Test App');
assert.equal(data.metadata['CFBundleIdentifier'], 'io.mts.testapp');
assert.equal(data.metadata['CFBundleName'], 'Test App');
Expand All @@ -22,8 +20,6 @@ describe('should parse .ipa file', function(){
describe('should parse .ipa files with binary .plist files', function(){
it('should contain the correct data', function(done) {
ipaMetadataParser('tests/fixtures/testApp-binaryPlist.ipa', function(err, data) {
assert.equal(err, void 0);

assert.equal(data.metadata['CFBundleDisplayName'], 'Test App');
assert.equal(data.metadata['CFBundleIdentifier'], 'io.mts.testapp');
assert.equal(data.metadata['CFBundleName'], 'Test App');
Expand Down

0 comments on commit 69adef3

Please sign in to comment.