Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 3669f26

Browse files
committed
docs(cookbook/graphql): Change tests spec name
1 parent 4f51d0f commit 3669f26

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

public/docs/_examples/heroes-graphql/e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { browser, element, by, ElementFinder, ElementArrayFinder } from 'protractor';
44
import { promise } from 'selenium-webdriver';
55

6-
const expectedH1 = 'Tour of Heroes';
6+
const expectedH1 = 'Tour of Heroes - GraphQL';
77
const expectedTitle = `Angular ${expectedH1}`;
88
const targetHero = { id: 15, name: 'Magneta' };
99
const targetHeroDashboardIndex = 3;

public/docs/_examples/heroes-graphql/ts/app/app-routing.module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// #docregion
12
import { NgModule } from '@angular/core';
23
import { RouterModule, Routes } from '@angular/router';
34

public/docs/_examples/heroes-graphql/ts/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ import { Component } from '@angular/core';
1616
styleUrls: ['app.component.css']
1717
})
1818
export class AppComponent {
19-
title = 'Tour of Heroes';
19+
title = 'Tour of Heroes - GraphQL';
2020
}

public/docs/_examples/heroes-graphql/ts/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html>
44
<head>
55
<base href="/">
6-
<title>Angular Tour of Heroes</title>
6+
<title>Angular Tour of Heroes - GraphQL</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1">
88

99
<link rel="stylesheet" href="styles.css">

0 commit comments

Comments
 (0)