Skip to content

Commit

Permalink
rename app to FileSharing (S)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipphoeninger committed Oct 7, 2024
1 parent cf24b72 commit b4edf37
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 21 deletions.
2 changes: 1 addition & 1 deletion CLIENT/CLIENT.Filesharing/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CLIENTFilesharing
# CLIENTFileSharing

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 18.2.6.

Expand Down
6 changes: 3 additions & 3 deletions CLIENT/CLIENT.Filesharing/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"CLIENT.Filesharing": {
"CLIENT.FileSharing": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
Expand Down Expand Up @@ -65,10 +65,10 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "CLIENT.Filesharing:build:production"
"buildTarget": "CLIENT.FileSharing:build:production"
},
"development": {
"buildTarget": "CLIENT.Filesharing:build:development"
"buildTarget": "CLIENT.FileSharing:build:development"
}
},
"defaultConfiguration": "development"
Expand Down
6 changes: 3 additions & 3 deletions CLIENT/CLIENT.Filesharing/src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ describe('AppComponent', () => {
expect(app).toBeTruthy();
});

it(`should have the 'CLIENT.Filesharing' title`, () => {
it(`should have the 'CLIENT.FileSharing' title`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('CLIENT.Filesharing');
expect(app.title).toEqual('CLIENT.FileSharing');
});

it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement as HTMLElement;
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, CLIENT.Filesharing');
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, CLIENT.FileSharing');
});
});
2 changes: 1 addition & 1 deletion CLIENT/CLIENT.Filesharing/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ import { RouterOutlet } from '@angular/router';
styleUrl: './app.component.scss'
})
export class AppComponent {
title = 'CLIENT.Filesharing';
title = 'CLIENT.FileSharing';
}
32 changes: 19 additions & 13 deletions CLIENT/CLIENT.Filesharing/src/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CLIENTFilesharing</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body class="mat-typography">
<app-root></app-root>
</body>
<head>
<meta charset="utf-8" />
<title>CLIENTFileSharing</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
</head>
<body class="mat-typography">
<app-root></app-root>
</body>
</html>

0 comments on commit b4edf37

Please sign in to comment.