mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
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:
@ -77,7 +77,7 @@
|
|||||||
Listen
|
Listen
|
||||||
</button>
|
</button>
|
||||||
</ion-col>
|
</ion-col>
|
||||||
<ion-col no-padding center padding-right text-right>
|
<ion-col no-padding align-self-center padding-right text-right>
|
||||||
<ion-note>
|
<ion-note>
|
||||||
11h ago
|
11h ago
|
||||||
</ion-note>
|
</ion-note>
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<ion-item>
|
<ion-item>
|
||||||
<h1>Heading</h1>
|
<h1>Heading</h1>
|
||||||
<p>Paragraph</p>
|
<p>Paragraph</p>
|
||||||
<p color="secondary">Secondary paragraph</p>
|
<p ion-text color="secondary">Secondary paragraph</p>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
|
||||||
<ion-item color="dark">
|
<ion-item color="dark">
|
||||||
@ -49,7 +49,7 @@
|
|||||||
Left Icon
|
Left Icon
|
||||||
</button>
|
</button>
|
||||||
left icon buttons
|
left icon buttons
|
||||||
<p color="primary">Primary paragraph</p>
|
<p ion-text color="primary">Primary paragraph</p>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button ion-item disabled color="dark">
|
<button ion-item disabled color="dark">
|
||||||
@ -58,7 +58,7 @@
|
|||||||
Left Icon
|
Left Icon
|
||||||
</button>
|
</button>
|
||||||
disabled left icon buttons
|
disabled left icon buttons
|
||||||
<p color="primary">Primary paragraph</p>
|
<p ion-text color="primary">Primary paragraph</p>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<ion-item color="light">
|
<ion-item color="light">
|
||||||
|
@ -32,14 +32,14 @@
|
|||||||
|
|
||||||
<ion-item-group>
|
<ion-item-group>
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<h3 color="secondary">Secondary header</h3>
|
<h3 ion-text color="secondary">Secondary header</h3>
|
||||||
Plain Ol' div with some text
|
Plain Ol' div with some text
|
||||||
</ion-item>
|
</ion-item>
|
||||||
</ion-item-group>
|
</ion-item-group>
|
||||||
|
|
||||||
<ion-item-group>
|
<ion-item-group>
|
||||||
<ion-item-divider>
|
<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>
|
<button ion-button item-right>button</button>
|
||||||
</ion-item-divider>
|
</ion-item-divider>
|
||||||
|
|
||||||
@ -57,7 +57,7 @@
|
|||||||
<button ion-button item-left clear color="light">
|
<button ion-button item-left clear color="light">
|
||||||
<ion-icon name="rainy"></ion-icon>
|
<ion-icon name="rainy"></ion-icon>
|
||||||
</button>
|
</button>
|
||||||
Dark <h5 color="primary">Primary h5</h5>
|
Dark <h5 ion-text color="primary">Primary h5</h5>
|
||||||
</ion-item-divider>
|
</ion-item-divider>
|
||||||
|
|
||||||
<ion-item text-wrap>
|
<ion-item text-wrap>
|
||||||
|
@ -5,5 +5,5 @@
|
|||||||
</ion-list>
|
</ion-list>
|
||||||
<div padding style="padding-top: 0">
|
<div padding style="padding-top: 0">
|
||||||
<p>Paragraph text</p>
|
<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>
|
</div>
|
@ -1,4 +1,5 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { IonicApp, IonicModule } from '../../../../..';
|
import { IonicApp, IonicModule } from '../../../../..';
|
||||||
|
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
@ -10,6 +11,7 @@ import { SidePageModule } from '../pages/side-page/side-page.module';
|
|||||||
AppComponent
|
AppComponent
|
||||||
],
|
],
|
||||||
imports: [
|
imports: [
|
||||||
|
BrowserModule,
|
||||||
IonicModule.forRoot(AppComponent, {
|
IonicModule.forRoot(AppComponent, {
|
||||||
swipeBackEnabled: true
|
swipeBackEnabled: true
|
||||||
}),
|
}),
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { IonicApp, IonicModule } from '../../../../..';
|
import { IonicApp, IonicModule } from '../../../../..';
|
||||||
|
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
@ -9,6 +10,7 @@ import { PageOneModule } from '../pages/page-one/page-one.module';
|
|||||||
AppComponent
|
AppComponent
|
||||||
],
|
],
|
||||||
imports: [
|
imports: [
|
||||||
|
BrowserModule,
|
||||||
IonicModule.forRoot(AppComponent, {
|
IonicModule.forRoot(AppComponent, {
|
||||||
swipeBackEnabled: true
|
swipeBackEnabled: true
|
||||||
}),
|
}),
|
||||||
|
@ -1 +0,0 @@
|
|||||||
|
|
@ -1,4 +1,5 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { IonicApp, IonicModule } from '../../../../..';
|
import { IonicApp, IonicModule } from '../../../../..';
|
||||||
|
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
@ -10,6 +11,7 @@ import { SidePageModule } from '../pages/side-page/side-page.module';
|
|||||||
AppComponent
|
AppComponent
|
||||||
],
|
],
|
||||||
imports: [
|
imports: [
|
||||||
|
BrowserModule,
|
||||||
IonicModule.forRoot(AppComponent, {
|
IonicModule.forRoot(AppComponent, {
|
||||||
swipeBackEnabled: true
|
swipeBackEnabled: true
|
||||||
}),
|
}),
|
||||||
|
@ -1 +0,0 @@
|
|||||||
|
|
@ -1,4 +1,5 @@
|
|||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { IonicApp, IonicModule } from '../../../../..';
|
import { IonicApp, IonicModule } from '../../../../..';
|
||||||
|
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
@ -10,6 +11,7 @@ import { SidePageModule } from '../pages/side-page/side-page.module';
|
|||||||
AppComponent
|
AppComponent
|
||||||
],
|
],
|
||||||
imports: [
|
imports: [
|
||||||
|
BrowserModule,
|
||||||
IonicModule.forRoot(AppComponent, {
|
IonicModule.forRoot(AppComponent, {
|
||||||
swipeBackEnabled: true
|
swipeBackEnabled: true
|
||||||
}),
|
}),
|
||||||
|
@ -1 +0,0 @@
|
|||||||
|
|
Reference in New Issue
Block a user