mirror of
https://github.com/apache/cordova-android.git
synced 2026-04-23 00:00:09 +08:00
slightly more coherent organization of concerns
This commit is contained in:
@@ -1,17 +1,10 @@
|
||||
util = require('util')
|
||||
exec = require('child_process').exec
|
||||
|
||||
exports['you are sane'] = (test) ->
|
||||
test.expect 1
|
||||
test.ok true, "this assertion should pass"
|
||||
test.done()
|
||||
|
||||
exports['default example project is generated'] = (test) ->
|
||||
test.expect 1
|
||||
exec './bin/create', (error, stdout, stderr) ->
|
||||
#console.log 'stdout: ' + stdout if stdout?
|
||||
#console.log 'stderr: ' + stderr if stderr?
|
||||
#console.log 'exec error: ' + error if error?
|
||||
test.ok true, "this assertion should pass" unless error?
|
||||
test.done()
|
||||
test.ok true, "this assertion should pass" unless error?
|
||||
test.done()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user