add tests

This commit is contained in:
Mathias Buus 2014-10-20 14:56:57 +09:00
parent 74c7a9455b
commit 1bbd199e34
2 changed files with 13 additions and 2 deletions

8
npm/test/index.js Normal file
View file

@ -0,0 +1,8 @@
var tape = require('tape')
var atom = require('../')
var fs = require('fs')
tape('has binary', function(t) {
t.ok(fs.existsSync(atom), 'atom-shell was downloaded')
t.end()
})