test(e2e): fix broken e2e tests for snapshot

removed the e2e.ts files from 3 split pane tests so they won’t show up
in snapshot
This commit is contained in:
Brandy Carney
2017-03-30 11:09:55 -04:00
parent 682ce49592
commit eb468d2530
11 changed files with 16 additions and 11 deletions

View File

@ -77,7 +77,7 @@
Listen
</button>
</ion-col>
<ion-col no-padding center padding-right text-right>
<ion-col no-padding align-self-center padding-right text-right>
<ion-note>
11h ago
</ion-note>

View File

@ -12,7 +12,7 @@
<ion-item>
<h1>Heading</h1>
<p>Paragraph</p>
<p color="secondary">Secondary paragraph</p>
<p ion-text color="secondary">Secondary paragraph</p>
</ion-item>
<ion-item color="dark">
@ -49,7 +49,7 @@
Left Icon
</button>
left icon buttons
<p color="primary">Primary paragraph</p>
<p ion-text color="primary">Primary paragraph</p>
</button>
<button ion-item disabled color="dark">
@ -58,7 +58,7 @@
Left Icon
</button>
disabled left icon buttons
<p color="primary">Primary paragraph</p>
<p ion-text color="primary">Primary paragraph</p>
</button>
<ion-item color="light">

View File

@ -32,14 +32,14 @@
<ion-item-group>
<ion-item>
<h3 color="secondary">Secondary header</h3>
<h3 ion-text color="secondary">Secondary header</h3>
Plain Ol' div with some text
</ion-item>
</ion-item-group>
<ion-item-group>
<ion-item-divider>
Item Divider <span color="danger">Danger Span</span>
Item Divider <span ion-text color="danger">Danger Span</span>
<button ion-button item-right>button</button>
</ion-item-divider>
@ -57,7 +57,7 @@
<button ion-button item-left clear color="light">
<ion-icon name="rainy"></ion-icon>
</button>
Dark <h5 color="primary">Primary h5</h5>
Dark <h5 ion-text color="primary">Primary h5</h5>
</ion-item-divider>
<ion-item text-wrap>

View File

@ -5,5 +5,5 @@
</ion-list>
<div padding style="padding-top: 0">
<p>Paragraph text</p>
Some more text and <span color="danger">danger span</span>.
Some more text and <span ion-text color="danger">danger span</span>.
</div>

View File

@ -1,4 +1,5 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule } from '../../../../..';
import { AppComponent } from './app.component';
@ -10,6 +11,7 @@ import { SidePageModule } from '../pages/side-page/side-page.module';
AppComponent
],
imports: [
BrowserModule,
IonicModule.forRoot(AppComponent, {
swipeBackEnabled: true
}),

View File

@ -1,4 +1,5 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule } from '../../../../..';
import { AppComponent } from './app.component';
@ -9,6 +10,7 @@ import { PageOneModule } from '../pages/page-one/page-one.module';
AppComponent
],
imports: [
BrowserModule,
IonicModule.forRoot(AppComponent, {
swipeBackEnabled: true
}),

View File

@ -1,4 +1,5 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule } from '../../../../..';
import { AppComponent } from './app.component';
@ -10,6 +11,7 @@ import { SidePageModule } from '../pages/side-page/side-page.module';
AppComponent
],
imports: [
BrowserModule,
IonicModule.forRoot(AppComponent, {
swipeBackEnabled: true
}),

View File

@ -1,4 +1,5 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule } from '../../../../..';
import { AppComponent } from './app.component';
@ -10,6 +11,7 @@ import { SidePageModule } from '../pages/side-page/side-page.module';
AppComponent
],
imports: [
BrowserModule,
IonicModule.forRoot(AppComponent, {
swipeBackEnabled: true
}),

View File

@ -1 +0,0 @@