Skip to content

Commit

Permalink
Let --boilerplate network tests run for longer
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethormandy committed Mar 14, 2014
1 parent 72fe33d commit 9147c53
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/harp.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("harp init", function() {
})

it("downloads the default boilerplate if it's not set", function(done) {
this.timeout(10000);
nixt()
.run('./bin/harp init /tmp/harp')
.stdout(/Downloading.*harp-boilerplates\/default/)
Expand All @@ -22,6 +23,7 @@ describe("harp init", function() {
})

it("defaults to the harp-boilerplates github org when given a shorthand pattern", function(done) {
this.timeout(10000);
nixt()
.run('./bin/harp init /tmp/harp -b hb-start')
.stdout(/Downloading.*harp-boilerplates\/hb-start/)
Expand All @@ -30,6 +32,7 @@ describe("harp init", function() {
})

it("honors -b option when given a user/repo pattern", function(done) {
this.timeout(10000);
nixt()
.run('./bin/harp init /tmp/harp -b zeke/harp-sample')
.stdout(/Downloading.*zeke\/harp-sample/)
Expand Down

0 comments on commit 9147c53

Please sign in to comment.