electron/npm/test/index.js
Mathias Buus 1bbd199e34 add tests
2014-10-20 14:56:57 +09:00

8 lines
No EOL
179 B
JavaScript

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()
})