Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit b986944

Browse files
committed
chore(tests): fix test when dummyUrl resolves
When there is a baseUrl, and a router that routes unrecognized paths to the default page, then baseUrl/dummyUrl could actually resolve to a correct page, and this will not fail.
1 parent b76bfc8 commit b986944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: spec/basic/handling_spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
describe('handling timeout errors', function() {
33

44
it('should call error handler on a timeout', function() {
5-
browser.get('dummyUrl', 1).then(function() {
5+
browser.get('http://dummyUrl', 1).then(function() {
66
throw 'did not handle error';
77
}, function(err) {
88
expect(err).toBeDefined();

0 commit comments

Comments
 (0)