mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(): use E2EApp as the class name for e2e apps
This commit is contained in:
15
ionic/components/list/test/group/index.ts
Normal file
15
ionic/components/list/test/group/index.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import {App} from 'ionic/ionic';
|
||||
|
||||
|
||||
@App({
|
||||
templateUrl: 'main.html'
|
||||
})
|
||||
class E2EApp {
|
||||
constructor() {
|
||||
this.people = [
|
||||
{"name": "Adam Bradley", "components": [ "all the things"]},
|
||||
{"name": "Max Lynch", "components": [ "checkbox", "content", "form"]},
|
||||
{"name": "Tim Lancina", "components": [ "tabs"]}
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import {App, List} from 'ionic/ionic';
|
||||
templateUrl: 'main.html',
|
||||
directives: [forwardRef(() => ItemCellTemplate)]
|
||||
})
|
||||
class IonicApp {
|
||||
class E2EApp {
|
||||
constructor() {
|
||||
|
||||
this.items = []
|
||||
|
||||
@@ -4,7 +4,7 @@ import {App} from 'ionic/ionic';
|
||||
@App({
|
||||
templateUrl: 'main.html'
|
||||
})
|
||||
class IonicApp {
|
||||
class E2EApp {
|
||||
constructor() {
|
||||
this.people = [
|
||||
{"name": "Adam Bradley", "components": [ "all the things"]},
|
||||
|
||||
@@ -4,7 +4,7 @@ import {App} from 'ionic/ionic';
|
||||
@App({
|
||||
templateUrl: 'main.html'
|
||||
})
|
||||
class IonicApp {
|
||||
class E2EApp {
|
||||
constructor() {
|
||||
this.groups = [];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user