mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
blank e2e tests
This commit is contained in:
1
src/components/action-menu/test/basic/e2e.js
Normal file
1
src/components/action-menu/test/basic/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/alert/test/basic/e2e.js
Normal file
1
src/components/alert/test/basic/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/button/test/basic/e2e.js
Normal file
1
src/components/button/test/basic/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/button/test/block/e2e.js
Normal file
1
src/components/button/test/block/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/button/test/clear/e2e.js
Normal file
1
src/components/button/test/clear/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/button/test/full/e2e.js
Normal file
1
src/components/button/test/full/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/button/test/outline/e2e.js
Normal file
1
src/components/button/test/outline/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/button/test/sizes/e2e.js
Normal file
1
src/components/button/test/sizes/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/item/test/basic/e2e.js
Normal file
1
src/components/item/test/basic/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/radio/test/basic/e2e.js
Normal file
1
src/components/radio/test/basic/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
src/components/switch/test/basic/e2e.js
Normal file
1
src/components/switch/test/basic/e2e.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
@ -1 +0,0 @@
|
|||||||
Loading...
|
|
24
src/components/view/test/basic/main.html
Normal file
24
src/components/view/test/basic/main.html
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
<ion-view view-title="!attr Title!">
|
||||||
|
|
||||||
|
<ion-view-title>
|
||||||
|
!ele Title!
|
||||||
|
</ion-view-title>
|
||||||
|
|
||||||
|
<ion-nav-items side="primary">
|
||||||
|
<button>p1</button>
|
||||||
|
<button>p2</button>
|
||||||
|
<button>p3</button>
|
||||||
|
<button>p4</button>
|
||||||
|
</ion-nav-items>
|
||||||
|
|
||||||
|
<ion-nav-items side="secondary">
|
||||||
|
<button>s1</button>
|
||||||
|
<button>s2</button>
|
||||||
|
</ion-nav-items>
|
||||||
|
|
||||||
|
<ion-content>
|
||||||
|
CONTENT!!
|
||||||
|
</ion-content>
|
||||||
|
|
||||||
|
</ion-view>
|
@ -1,38 +1,17 @@
|
|||||||
import {Component, Template, bootstrap} from 'angular2/angular2';
|
import {bootstrap} from 'angular2/core';
|
||||||
|
import {Component, Template} from 'angular2/angular2';
|
||||||
import {View} from 'ionic2/components/view/view';
|
import {View} from 'ionic2/components/view/view';
|
||||||
import {Content} from 'ionic2/components/content/content';
|
import {Content} from 'ionic2/components/content/content';
|
||||||
import {ToolBar} from 'ionic2/components/toolbar/toolbar';
|
|
||||||
|
|
||||||
@Component({
|
@Component({ selector: '[ion-app]' })
|
||||||
selector: '[ion-app]'
|
|
||||||
})
|
|
||||||
@Template({
|
@Template({
|
||||||
inline: `
|
url: 'main.html',
|
||||||
<ion-view view-title="!attr Title!">
|
directives: [View, Content]
|
||||||
|
|
||||||
<ion-view-title>
|
|
||||||
!ele Title!
|
|
||||||
</ion-view-title>
|
|
||||||
|
|
||||||
<ion-nav-items side="primary">
|
|
||||||
<button>p1</button>
|
|
||||||
<button>p2</button>
|
|
||||||
<button>p3</button>
|
|
||||||
<button>p4</button>
|
|
||||||
</ion-nav-items>
|
|
||||||
|
|
||||||
<ion-nav-items side="secondary">
|
|
||||||
<button>s1</button>
|
|
||||||
<button>s2</button>
|
|
||||||
</ion-nav-items>
|
|
||||||
|
|
||||||
<ion-content>
|
|
||||||
CONTENT!!
|
|
||||||
</ion-content>
|
|
||||||
|
|
||||||
</ion-view>
|
|
||||||
`,
|
|
||||||
directives: [View, Content, ToolBar]
|
|
||||||
})
|
})
|
||||||
class MyApp {}
|
class IonicApp {
|
||||||
bootstrap(MyApp);
|
constructor() {
|
||||||
|
console.log('IonicApp Start')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bootstrap(IonicApp)
|
||||||
|
Reference in New Issue
Block a user