Skip to content

Commit

Permalink
bloody mess
Browse files Browse the repository at this point in the history
  • Loading branch information
elf Pavlik committed Feb 2, 2013
1 parent f6fd6fd commit eec05ee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
, "devDependencies": {
"handlebars": "1.0.x"
, "almond": "*"
, "zombie": "*"
}
}
13 changes: 13 additions & 0 deletions test/zombieTest.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
var zombie = require('zombie');
var assert = require('assert');

describe('just checking', function(){
before(function(done){
this.browser = new zombie.Browser();
this.browser.visit('http://localhost:3000/index.dev.html');
});

it('says true', function(){
return true;
});
});

0 comments on commit eec05ee

Please sign in to comment.