Skip to content

Commit c160c25

Browse files
committed
update(): fix old tests for working e2e env
1 parent d9f2159 commit c160c25

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

e2e/index.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
describe('index', () => {
22

33
beforeEach(() => {
4-
browser.get('/index.html');
4+
browser.get('/');
55
});
66

77
it('should have a title', () => {

src/demo-app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!doctype html>
22
{{!-- This file is an handlebar file that gets filled at build time. --}}
3-
<html>
3+
<html lang="en">
44
<head>
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1">

src/e2e-app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!doctype html>
22
{{!-- This file is an handlebar file that gets filled at build time. --}}
3-
<html>
3+
<html lang="en">
44
<head>
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1">

0 commit comments

Comments
 (0)