From 8ac2ff485a2ea29d4b3cbdff806ec2472599de71 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 23 Mar 2017 15:49:38 -0400 Subject: [PATCH] test(img): remove extra app.module.ts file --- src/components/img/test/basic/app.module.ts | 63 --------------------- 1 file changed, 63 deletions(-) delete mode 100644 src/components/img/test/basic/app.module.ts 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 {}