mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-27 04:42:51 +08:00
11 lines
266 B
CoffeeScript
11 lines
266 B
CoffeeScript
util = require('util')
|
|
exec = require('child_process').exec
|
|
|
|
|
|
exports['default example project is generated'] = (test) ->
|
|
test.expect 1
|
|
exec './bin/create', (error, stdout, stderr) ->
|
|
test.ok true, "this assertion should pass" unless error?
|
|
test.done()
|
|
|