From 757fcfff7ee9a71c9eeed90d42932edf53b64acf Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:28:23 -0400 Subject: [PATCH] chore: version 1.4.0-beta.1 --- ponyracer/.angular-cli.json | 9 +++------ ponyracer/.gitignore | 1 - ponyracer/package.json | 2 +- ponyracer/src/app/app.component.spec.ts | 5 ----- 4 files changed, 4 insertions(+), 13 deletions(-) diff --git a/ponyracer/.angular-cli.json b/ponyracer/.angular-cli.json index 3cf066277..0035b1618 100644 --- a/ponyracer/.angular-cli.json +++ b/ponyracer/.angular-cli.json @@ -36,16 +36,13 @@ }, "lint": [ { - "project": "src/tsconfig.app.json", - "exclude": "**/node_modules/**" + "project": "src/tsconfig.app.json" }, { - "project": "src/tsconfig.spec.json", - "exclude": "**/node_modules/**" + "project": "src/tsconfig.spec.json" }, { - "project": "e2e/tsconfig.e2e.json", - "exclude": "**/node_modules/**" + "project": "e2e/tsconfig.e2e.json" } ], "test": { diff --git a/ponyracer/.gitignore b/ponyracer/.gitignore index 6b6681430..54bfd2001 100644 --- a/ponyracer/.gitignore +++ b/ponyracer/.gitignore @@ -32,7 +32,6 @@ npm-debug.log testem.log /typings -yarn-error.log # e2e /e2e/*.js diff --git a/ponyracer/package.json b/ponyracer/package.json index 9c1f15191..e78763778 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.4.0-beta.0", + "@angular/cli": "", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", diff --git a/ponyracer/src/app/app.component.spec.ts b/ponyracer/src/app/app.component.spec.ts index 9510495a2..bcbdf36b3 100644 --- a/ponyracer/src/app/app.component.spec.ts +++ b/ponyracer/src/app/app.component.spec.ts @@ -1,7 +1,5 @@ import { TestBed, async } from '@angular/core/testing'; - import { AppComponent } from './app.component'; - describe('AppComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ @@ -10,19 +8,16 @@ describe('AppComponent', () => { ], }).compileComponents(); })); - it('should create the app', async(() => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.debugElement.componentInstance; expect(app).toBeTruthy(); })); - it(`should have as title 'app'`, async(() => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.debugElement.componentInstance; expect(app.title).toEqual('app'); })); - it('should render title in a h1 tag', async(() => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges();