mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-02 17:03:36 +00:00
add spec cmd
This commit is contained in:
parent
ecbab3f7c5
commit
99f5d38f1f
@ -54,9 +54,12 @@ program.command('run [env]').description('run dapp').action(function(env_) {
|
|||||||
run('grunt deploy:' + env);
|
run('grunt deploy:' + env);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
program.command('spec').description('run specs').action(function() {
|
||||||
|
run('jasmine');
|
||||||
|
});
|
||||||
|
|
||||||
program.command('blockchain [env]').description('run blockchain').action(function(env_) {
|
program.command('blockchain [env]').description('run blockchain').action(function(env_) {
|
||||||
var env = env_ || 'development';
|
var env = env_ || 'development';
|
||||||
|
|
||||||
run('grunt blockchain:' + env);
|
run('grunt blockchain:' + env);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user