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

Commit ebc528f

Browse files
committed
fix(debugging): switch debugging tests to the new test app urls.
1 parent b0b25c3 commit ebc528f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

debugging/failure_spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var webdriver = require('selenium-webdriver');
33

44
describe('modes of failure', function() {
55
it('should fail to find a non-existent element', function() {
6-
browser.get('app/index.html#/form');
6+
browser.get('index.html#/form');
77

88
// Run this statement before the line which fails. If protractor is run
99
// with the debugger (protractor debug debugging/conf.js), the test
@@ -20,7 +20,7 @@ describe('modes of failure', function() {
2020
}, 20000);
2121

2222
it('should fail an assertion', function() {
23-
browser.get('app/index.html#/form');
23+
browser.get('index.html#/form');
2424

2525
var greeting = element(by.binding('{{greeting}}'));
2626

debugging/timeout_spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('timeout possibilities', function() {
99
it('should timeout due to webdriver script timeout', function() {
1010
browser.driver.manage().timeouts().setScriptTimeout(55);
1111

12-
browser.get('app/index.html#/form');
12+
browser.get('index.html#/form');
1313

1414
browser.driver.executeAsyncScript(function() {
1515
var callback = arguments[arguments.length - 1];
@@ -33,7 +33,7 @@ describe('timeout possibilities', function() {
3333

3434
browser.driver.manage().timeouts().setScriptTimeout(55);
3535

36-
browser.get('app/index.html#/async');
36+
browser.get('index.html#/async');
3737

3838

3939
var status = element(by.binding('slowHttpStatus'));

0 commit comments

Comments
 (0)