LEFT | RIGHT |
1 'use strict'; | 1 'use strict'; |
2 | 2 |
3 describe.only('Sub Applications', function() { | 3 describe('Sub Applications', function() { |
4 var Y, juju, subapp; | 4 var Y, juju, subapp; |
5 | 5 |
6 before(function(done) { | 6 before(function(done) { |
7 Y = YUI(GlobalConfig).use(['juju-routing', | 7 Y = YUI(GlobalConfig).use(['juju-routing', |
8 'juju-gui'], | 8 'juju-gui'], |
9 function(Y) { | 9 function(Y) { |
10 juju = Y.namespace('juju'); | 10 juju = Y.namespace('juju'); |
11 done(); | 11 done(); |
12 }); | 12 }); |
13 | 13 |
(...skipping 25 matching lines...) Expand all Loading... |
39 | 39 |
40 assert(Y.Array.some(subAppRoutes, function(route) { | 40 assert(Y.Array.some(subAppRoutes, function(route) { |
41 if (route.namespace === undefined) { | 41 if (route.namespace === undefined) { |
42 return true; | 42 return true; |
43 } | 43 } |
44 }) === false); | 44 }) === false); |
45 | 45 |
46 }); | 46 }); |
47 | 47 |
48 }); | 48 }); |
LEFT | RIGHT |