From abd6713baf50e0f88486e4ba6a5d89fa227a084a Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Fri, 19 May 2017 15:04:09 -0500 Subject: [PATCH] fix(): add custom schema to some more tests that were missed --- .../input/test/highlight/pages/root-page/root-page.module.ts | 2 +- src/components/tabs/test/ghost/app.module.ts | 5 +++-- src/components/virtual-scroll/test/cards/app.module.ts | 5 +++-- .../virtual-scroll/test/image-gallery/app.module.ts | 5 +++-- .../virtual-scroll/test/sliding-item/app.module.ts | 5 +++-- 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/components/input/test/highlight/pages/root-page/root-page.module.ts b/src/components/input/test/highlight/pages/root-page/root-page.module.ts index 102befaa87..66ac3223e7 100644 --- a/src/components/input/test/highlight/pages/root-page/root-page.module.ts +++ b/src/components/input/test/highlight/pages/root-page/root-page.module.ts @@ -10,6 +10,6 @@ import { RootPage } from './root-page'; imports: [ IonicPageModule.forChild(RootPage) ], - schemas: [CUSTOM_ELEMENTS_SCHEM] + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class RootPageModule {} diff --git a/src/components/tabs/test/ghost/app.module.ts b/src/components/tabs/test/ghost/app.module.ts index 115009b845..5f24b56683 100644 --- a/src/components/tabs/test/ghost/app.module.ts +++ b/src/components/tabs/test/ghost/app.module.ts @@ -1,4 +1,4 @@ -import { Component, QueryList, ViewChildren, NgModule } from '@angular/core'; +import { Component, QueryList, ViewChildren, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, Tab } from '../../../..'; @@ -142,6 +142,7 @@ export class TabsPage { Tab3, QuesaritoPage, TabsPage - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {} diff --git a/src/components/virtual-scroll/test/cards/app.module.ts b/src/components/virtual-scroll/test/cards/app.module.ts index ecff4814ef..7c6d8e6a4b 100644 --- a/src/components/virtual-scroll/test/cards/app.module.ts +++ b/src/components/virtual-scroll/test/cards/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewEncapsulation, NgModule } from '@angular/core'; +import { Component, ViewEncapsulation, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; @@ -49,7 +49,8 @@ export class AppComponent { entryComponents: [ AppComponent, E2EPage - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {} diff --git a/src/components/virtual-scroll/test/image-gallery/app.module.ts b/src/components/virtual-scroll/test/image-gallery/app.module.ts index bc5ce02545..27a9427409 100644 --- a/src/components/virtual-scroll/test/image-gallery/app.module.ts +++ b/src/components/virtual-scroll/test/image-gallery/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewEncapsulation, NgModule } from '@angular/core'; +import { Component, ViewEncapsulation, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule } from '../../../..'; @@ -95,7 +95,8 @@ export class AppComponent { entryComponents: [ AppComponent, E2EPage - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {} diff --git a/src/components/virtual-scroll/test/sliding-item/app.module.ts b/src/components/virtual-scroll/test/sliding-item/app.module.ts index bdcdd00fd0..8044c32910 100644 --- a/src/components/virtual-scroll/test/sliding-item/app.module.ts +++ b/src/components/virtual-scroll/test/sliding-item/app.module.ts @@ -1,4 +1,4 @@ -import { Component, ViewChild, ElementRef, NgModule } from '@angular/core'; +import { Component, ViewChild, ElementRef, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { IonicApp, IonicModule, Platform } from '../../../..'; @@ -68,6 +68,7 @@ export class AppComponent { entryComponents: [ AppComponent, E2EPage - ] + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule {}