chore(e2e): add css back to e2e tests where it was missing

add css back to e2e tests where it was missing
This commit is contained in:
Dan Bucholtz
2016-09-27 16:48:27 -05:00
parent 9bfabfc289
commit 248d0c1a9c
5 changed files with 132 additions and 5 deletions

View File

@ -2,7 +2,8 @@ import { Component } from '@angular/core';
import { LoadingController, NavController } from 'ionic-angular';
@Component({
templateUrl: 'page.html'
templateUrl: 'page.html',
styleUrls: ['style.css']
})
export class Page1 {
constructor(public loadingCtrl: LoadingController, public navCtrl: NavController) {}