We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2aeb51a commit 6f4e9e2Copy full SHA for 6f4e9e2
1 file changed
test/e2e/scenarios.js
@@ -12,7 +12,12 @@ describe('Angular Timer E2E Tests', function () {
12
});
13
14
beforeEach(function () {
15
- browser().navigateTo('/index.html');
+ if (window.location.host.indexOf("github.io") > -1) {
16
+ browser().navigateTo('/angular-timer/index.html');
17
+ }
18
+ else {
19
+ browser().navigateTo('/index.html');
20
21
22
23
it("Simple Timer - Should stop ticking when user clicks 'Stop' button", function () {
0 commit comments