diff --git a/src/components/img/test/basic/app.module.ts b/src/components/img/test/basic/app.module.ts deleted file mode 100644 index df95cc9886..0000000000 --- a/src/components/img/test/basic/app.module.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { Component, Input, NgModule } from '@angular/core'; -import { IonicApp, IonicModule } from '../../../../../ionic-angular'; - - -@Component({ - selector: '', - template: '' -}) -export class MyImg { - @Input() width: any; - @Input() height: any; - @Input() src: any; -} - -@Component({ - templateUrl: 'main.html' -}) -export class E2EPage { - images = [ - { - width: '100', - height: '44', - src: '../img/batmobile.jpg' - }, - { - width: '100', - height: '75', - src: '../img/knight-rider.jpg' - }, - { - width: '100', - height: '68', - src: '../img/general-lee.jpg' - } - ]; - -} - - -@Component({ - template: '' -}) -export class E2EApp { - root = E2EPage; -} - - -@NgModule({ - declarations: [ - E2EApp, - E2EPage, - MyImg - ], - imports: [ - IonicModule.forRoot(E2EApp) - ], - bootstrap: [IonicApp], - entryComponents: [ - E2EApp, - E2EPage - ] -}) -export class AppModule {}