From 564d4fc5e04f95b1beabf8455273b6042e20e527 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Sun, 6 Mar 2016 21:12:24 -0600 Subject: [PATCH] test(gestures): init gesture test --- ionic/components/app/test/gestures/index.ts | 25 ++++++++++++++++++++ ionic/components/app/test/gestures/main.html | 9 +++++++ 2 files changed, 34 insertions(+) create mode 100644 ionic/components/app/test/gestures/index.ts create mode 100644 ionic/components/app/test/gestures/main.html diff --git a/ionic/components/app/test/gestures/index.ts b/ionic/components/app/test/gestures/index.ts new file mode 100644 index 0000000000..08fd390e61 --- /dev/null +++ b/ionic/components/app/test/gestures/index.ts @@ -0,0 +1,25 @@ +import {App, Page} from 'ionic-angular'; + + +@Page({ + templateUrl: 'main.html' +}) +class E2EPage { + + onTap(ev) { + console.log('onTap', ev); + } + +} + + +@App({ + template: '' +}) +class E2EApp { + root; + + constructor() { + this.root = E2EPage; + } +} diff --git a/ionic/components/app/test/gestures/main.html b/ionic/components/app/test/gestures/main.html new file mode 100644 index 0000000000..c904b1465d --- /dev/null +++ b/ionic/components/app/test/gestures/main.html @@ -0,0 +1,9 @@ + + Gestures + + + + + + +