Skip to content

Commit

Permalink
Reverting the test that installs dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed Jul 1, 2015
1 parent f359511 commit 9ded303
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions test/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,32 +111,4 @@ describe('jekyllized:app', function() {
assertJSONFileContains('package.json', pkg);
});
});

describe('can be installed', function() {
before(function(done) {
this.answers = {
projectName: 'jekyllized',
projectDescription: 'Test site for Jekyllized',
projectURL: 'www.test.com',
authorName: 'Ola Nordmann',
authorEmail: 'ola.nordmann@gmail.com',
authorBio: 'A norwegian dude',
authorTwitter: '0lanordmann',
uploading: 'None',
jekyllPermalinks: 'pretty',
jekyllPaginate: '10'
};
helpers.run(path.join(__dirname, '../generators/app'))
.inDir(path.join(__dirname, 'tmp/build'))
.withOptions({
'skip-install': false
})
.withPrompts(this.answers)
.on('end', done);
});

it('installs properly', function() {
assert.file('Gemfile.lock');
});
});
});

0 comments on commit 9ded303

Please sign in to comment.