Skip to content

Commit 2bf2e30

Browse files
Alex PrittAlex Pritt
authored andcommitted
added working files
1 parent bf9aa8a commit 2bf2e30

39 files changed

Lines changed: 4448 additions & 3421 deletions

angular.json

100644100755
File mode changed.

e2e/protractor.conf.js

100644100755
File mode changed.

e2e/src/app.e2e-spec.ts

100644100755
File mode changed.

e2e/src/app.po.ts

100644100755
File mode changed.

e2e/tsconfig.e2e.json

100644100755
File mode changed.

package-lock.json

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

package.json

100644100755
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "^6.0.0",
14+
"@angular/animations": "^6.0.2",
1515
"@angular/common": "^6.0.0",
1616
"@angular/compiler": "^6.0.0",
1717
"@angular/core": "^6.0.0",
1818
"@angular/forms": "^6.0.0",
1919
"@angular/http": "^6.0.0",
20+
"@angular/material": "^7.3.3",
2021
"@angular/platform-browser": "^6.0.0",
2122
"@angular/platform-browser-dynamic": "^6.0.0",
2223
"@angular/router": "^6.0.0",
@@ -25,10 +26,9 @@
2526
"zone.js": "^0.8.26"
2627
},
2728
"devDependencies": {
29+
"@angular-devkit/build-angular": "^0.13.3",
30+
"@angular/cli": "^7.3.3",
2831
"@angular/compiler-cli": "^6.0.0",
29-
"@angular-devkit/build-angular": "~0.6.1",
30-
"typescript": "~2.7.2",
31-
"@angular/cli": "~6.0.1",
3232
"@angular/language-service": "^6.0.0",
3333
"@types/jasmine": "~2.8.6",
3434
"@types/jasminewd2": "~2.0.3",
@@ -41,8 +41,9 @@
4141
"karma-coverage-istanbul-reporter": "~1.4.2",
4242
"karma-jasmine": "~1.1.1",
4343
"karma-jasmine-html-reporter": "^0.2.2",
44-
"protractor": "~5.3.0",
44+
"protractor": "^5.4.2",
4545
"ts-node": "~5.0.1",
46-
"tslint": "~5.9.1"
46+
"tslint": "~5.9.1",
47+
"typescript": "~2.7.2"
4748
}
4849
}

src/app/about/about.component.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<p>
2+
This is all a big ol' test, click <a href="" (click)="sendMeHome()"><strong>here</strong></a> to go back home!
3+
</p>

src/app/about/about.component.scss

Whitespace-only changes.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2+
3+
import { AboutComponent } from './about.component';
4+
5+
describe('AboutComponent', () => {
6+
let component: AboutComponent;
7+
let fixture: ComponentFixture<AboutComponent>;
8+
9+
beforeEach(async(() => {
10+
TestBed.configureTestingModule({
11+
declarations: [ AboutComponent ]
12+
})
13+
.compileComponents();
14+
}));
15+
16+
beforeEach(() => {
17+
fixture = TestBed.createComponent(AboutComponent);
18+
component = fixture.componentInstance;
19+
fixture.detectChanges();
20+
});
21+
22+
it('should create', () => {
23+
expect(component).toBeTruthy();
24+
});
25+
});

0 commit comments

Comments
 (0)