electron/npm/test/index.js

8 lines
185 B
JavaScript
Raw Normal View History

2014-10-20 05:56:57 +00:00
var tape = require('tape')
2015-04-17 18:19:50 +00:00
var electron = require('../')
2014-10-20 05:56:57 +00:00
var fs = require('fs')
tape('has binary', function(t) {
2015-04-17 18:19:50 +00:00
t.ok(fs.existsSync(electron), 'electron was downloaded')
2014-10-20 05:56:57 +00:00
t.end()
})