Fix travis build. Remove test run for now

This commit is contained in:
BoykoAlex
2017-08-22 13:01:51 -04:00
parent 8fba18a039
commit 1dc271fc51
3 changed files with 6 additions and 5 deletions

View File

@@ -15,5 +15,6 @@ install:
- npm install - npm install
script: script:
- npm run lint - npm run lint
- npm run test:once # - npm run test:once
- npm run integration # - npm run integration
- npm run build

View File

@@ -1,5 +1,5 @@
import { Component } from '@angular/core'; import { Component } from '@angular/core';
import { LibService } from 'spring-flo'; import { } from 'spring-flo';
@Component({ @Component({
selector: 'integration-app', selector: 'integration-app',

View File

@@ -1,11 +1,11 @@
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser'; import { BrowserModule } from '@angular/platform-browser';
import { LibModule } from 'spring-flo'; import { FloModule } from 'spring-flo';
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
@NgModule({ @NgModule({
imports: [ BrowserModule, LibModule], imports: [ BrowserModule, FloModule],
declarations: [ AppComponent ], declarations: [ AppComponent ],
bootstrap: [ AppComponent ] bootstrap: [ AppComponent ]
}) })