Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add failing tests for route matching with hash #1851

Merged
merged 1 commit into from
Sep 11, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions modules/__tests__/matchRoutes-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,27 @@ describe('matchRoutes', function () {
});
});

describe('when the location matches a route with hash', function () {
it('matches the correct routes', function (done) {
matchRoutes(routes, createLocation('/users#about'), function (error, match) {
assert(match);
expect(match.routes).toEqual([ RootRoute, UsersRoute, UsersIndexRoute ]);
done();
});
});
});

describe('when the location matches a deeply nested route with params and hash', function () {
it('matches the correct routes and params', function (done) {
matchRoutes(routes, createLocation('/users/5/abc#about'), function (error, match) {
assert(match);
expect(match.routes).toEqual([ RootRoute, UsersRoute, UserRoute, PostRoute ]);
expect(match.params).toEqual({ userID: '5', postID: 'abc' });
done();
});
});
});

describe('when the location matches an absolute route', function () {
it('matches the correct routes', function (done) {
matchRoutes(routes, createLocation('/about'), function (error, match) {
Expand Down