Skip to content

Commit b355f00

Browse files
authored
Correct e2e test to match app component template
Fixes #6537
1 parent ada146c commit b355f00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@angular/cli/blueprints/ng/files/e2e/app.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('<%= htmlComponentName %> App', () => {
1010
it('should display welcome message', done => {
1111
page.navigateTo();
1212
page.getParagraphText()
13-
.then(msg => expect(msg).toEqual('Welcome to <%= prefix %>!!'))
13+
.then(msg => expect(msg).toEqual('<%= prefix %>'))
1414
.then(done, done.fail);
1515
});
1616
});

0 commit comments

Comments
 (0)