Skip to content

Commit b8c84e4

Browse files
committed
deployable
1 parent 7efa83b commit b8c84e4

File tree

8 files changed

+29
-49
lines changed

8 files changed

+29
-49
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# NgTest
1+
# Rough Works Project - Angular Forms
22

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

angular.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": 1,
44
"newProjectRoot": "projects",
55
"projects": {
6-
"ng-test": {
6+
"ng-rough-work": {
77
"projectType": "application",
88
"schematics": {},
99
"root": "",
@@ -13,7 +13,7 @@
1313
"build": {
1414
"builder": "@angular-devkit/build-angular:browser",
1515
"options": {
16-
"outputPath": "dist/ng-test",
16+
"outputPath": "dist/ng-rough-work",
1717
"index": "src/index.html",
1818
"main": "src/main.ts",
1919
"polyfills": "src/polyfills.ts",
@@ -58,18 +58,18 @@
5858
"serve": {
5959
"builder": "@angular-devkit/build-angular:dev-server",
6060
"options": {
61-
"browserTarget": "ng-test:build"
61+
"browserTarget": "ng-rough-work:build"
6262
},
6363
"configurations": {
6464
"production": {
65-
"browserTarget": "ng-test:build:production"
65+
"browserTarget": "ng-rough-work:build:production"
6666
}
6767
}
6868
},
6969
"extract-i18n": {
7070
"builder": "@angular-devkit/build-angular:extract-i18n",
7171
"options": {
72-
"browserTarget": "ng-test:build"
72+
"browserTarget": "ng-rough-work:build"
7373
}
7474
},
7575
"test": {
@@ -106,15 +106,15 @@
106106
"builder": "@angular-devkit/build-angular:protractor",
107107
"options": {
108108
"protractorConfig": "e2e/protractor.conf.js",
109-
"devServerTarget": "ng-test:serve"
109+
"devServerTarget": "ng-rough-work:serve"
110110
},
111111
"configurations": {
112112
"production": {
113-
"devServerTarget": "ng-test:serve:production"
113+
"devServerTarget": "ng-rough-work:serve:production"
114114
}
115115
}
116116
}
117117
}
118118
}},
119-
"defaultProject": "ng-test"
119+
"defaultProject": "ng-rough-work"
120120
}

e2e/src/app.e2e-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('workspace-project App', () => {
1010

1111
it('should display welcome message', () => {
1212
page.navigateTo();
13-
expect(page.getTitleText()).toEqual('Welcome to ng-test!');
13+
expect(page.getTitleText()).toEqual('Welcome to ng-rough-work!');
1414
});
1515

1616
afterEach(async () => {

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = function (config) {
1616
clearContext: false // leave Jasmine Spec Runner output visible in browser
1717
},
1818
coverageIstanbulReporter: {
19-
dir: require('path').join(__dirname, './coverage/ng-test'),
19+
dir: require('path').join(__dirname, './coverage/ng-rough-work'),
2020
reports: ['html', 'lcovonly', 'text-summary'],
2121
fixWebpackSourcePaths: true
2222
},

package-lock.json

Lines changed: 13 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ng-test",
2+
"name": "ng-rough-work",
33
"version": "0.0.0",
44
"scripts": {
55
"ng": "ng",

src/app/app.component.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ describe('AppComponent', () => {
2020
expect(app).toBeTruthy();
2121
});
2222

23-
it(`should have as title 'ng-test'`, () => {
23+
it(`should have as title 'ng-rough-work'`, () => {
2424
const fixture = TestBed.createComponent(AppComponent);
2525
const app = fixture.debugElement.componentInstance;
26-
expect(app.title).toEqual('ng-test');
26+
expect(app.title).toEqual('ng-rough-work');
2727
});
2828

2929
it('should render title in a h1 tag', () => {
3030
const fixture = TestBed.createComponent(AppComponent);
3131
fixture.detectChanges();
3232
const compiled = fixture.debugElement.nativeElement;
33-
expect(compiled.querySelector('h1').textContent).toContain('Welcome to ng-test!');
33+
expect(compiled.querySelector('h1').textContent).toContain('Welcome to ng-rough-work!');
3434
});
3535
});

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8">
5-
<title>NgTest</title>
5+
<title>Rough Work - Angular Forms</title>
66
<base href="/">
77

88
<meta name="viewport" content="width=device-width, initial-scale=1">

0 commit comments

Comments
 (0)