diff --git a/.travis.yml b/.travis.yml index c1da623..f52620a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,5 +15,6 @@ install: - npm install script: - npm run lint - - npm run test:once - - npm run integration +# - npm run test:once +# - npm run integration + - npm run build diff --git a/integration/src/app/app.component.ts b/integration/src/app/app.component.ts index eff1fd4..3fa0409 100644 --- a/integration/src/app/app.component.ts +++ b/integration/src/app/app.component.ts @@ -1,5 +1,5 @@ import { Component } from '@angular/core'; -import { LibService } from 'spring-flo'; +import { } from 'spring-flo'; @Component({ selector: 'integration-app', diff --git a/integration/src/app/app.module.ts b/integration/src/app/app.module.ts index f9077c1..f99f496 100644 --- a/integration/src/app/app.module.ts +++ b/integration/src/app/app.module.ts @@ -1,11 +1,11 @@ import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; -import { LibModule } from 'spring-flo'; +import { FloModule } from 'spring-flo'; import { AppComponent } from './app.component'; @NgModule({ - imports: [ BrowserModule, LibModule], + imports: [ BrowserModule, FloModule], declarations: [ AppComponent ], bootstrap: [ AppComponent ] })