Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#55 from openSUSE/title
Browse files Browse the repository at this point in the history
Change site title to 'Kubernetes Release Notes'
  • Loading branch information
jeefy authored Jun 14, 2019
2 parents 18587b8 + 11b0986 commit f2e74be
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cypress/integration/app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ describe('Release Notes App', () => {
// Given
// When
// Then
cy.title().should('include', 'Relnotes');
cy.title().should('include', 'Kubernetes Release Notes');
});
});
4 changes: 2 additions & 2 deletions src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('AppComponent', () => {
expect(instance).toBeTruthy();
});

it(`should have as title 'relnotes'`, () => {
expect(instance.title).toEqual('relnotes');
it(`should have as title 'Kubernetes Release Notes'`, () => {
expect(instance.title).toEqual('Kubernetes Release Notes');
});
});
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Component } from '@angular/core';
templateUrl: './app.component.html',
})
export class AppComponent {
title = 'relnotes';
title = 'Kubernetes Release Notes';

/**
* The main app components constructor
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Relnotes</title>
<title>Kubernetes Release Notes</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" type=image/png href=favicon.png>
Expand Down

0 comments on commit f2e74be

Please sign in to comment.