Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
fix test due to removed repo
Browse files Browse the repository at this point in the history
  • Loading branch information
timaschew committed Oct 29, 2014
1 parent 7ba46c2 commit 297a86f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/install.js
Expand Up @@ -98,14 +98,14 @@ describe('component install', function(){


describe('[name...]', function(){ describe('[name...]', function(){
it('should install the multiple components', function(done){ it('should install the multiple components', function(done){
exec('bin/component install component/domify@1.0.0 component/is-module@1.0.0', function(err, stdout){ exec('bin/component install component/domify@1.0.0 component/dialog@0.3.0', function(err, stdout){
if (err) return done(err); if (err) return done(err);
stdout.should.include('install'); stdout.should.include('install');
stdout.should.include('complete'); stdout.should.include('complete');
var json = require(path.resolve('components/component/domify/1.0.0/component.json')); var json = require(path.resolve('components/component/domify/1.0.0/component.json'));
json.name.should.equal('domify'); json.name.should.equal('domify');
var json = require(path.resolve('components/component/is-module/1.0.0/component.json')); var json = require(path.resolve('components/component/dialog/0.3.0/component.json'));
json.name.should.equal('is-module'); json.name.should.equal('dialog');
done(); done();
}) })
}) })
Expand Down

0 comments on commit 297a86f

Please sign in to comment.