[Service] Integrate DeviceHome and SignalingServer
[platform/framework/web/wrtjs.git] / device_home / node_modules / jake / test / unit / jakefile.js
1
2 task('foo', function () {
3   console.log('ran top-level foo');
4 });
5
6 task('bar', function () {
7   console.log('ran top-level bar');
8 });
9
10 task('zerb', function () {
11   console.log('ran zerb');
12 });
13
14 namespace('zooby', function () {
15   task('zerp', function () {});
16
17   task('derp', ['zerp'], function () {});
18
19   namespace('frang', function () {
20
21     namespace('w00t', function () {
22       task('bar', function () {
23         console.log('ran zooby:frang:w00t:bar');
24       });
25     });
26
27     task('asdf', function () {});
28   });
29
30 });
31
32 namespace('hurr', function () {
33   namespace('durr');
34 });
35
36