We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bead4ce commit 748c7ffCopy full SHA for 748c7ff
specs/Route.spec.js
@@ -92,6 +92,23 @@ describe('a Route with custom props', function() {
92
});
93
94
95
+describe('a Route', function() {
96
+ it('requires a handler');
97
+});
98
+
99
+describe('a child route', function() {
100
+ describe('path', function() {
101
+ it('defaults to /');
102
+ it('is not required to start with /');
103
+ it('can be inferred from its name');
104
+ it('must contain all dynamic segments of its parent route path');
105
+ });
106
107
+ describe('name', function() {
108
+ it('cannot be reused');
109
110
111
112
// describe('a Router that renders on the server', function() {
113
// it('works with async willTransitionTo()', function(done) {
114
// var dataStore = 'goodbye';
0 commit comments