fix(): add custom schema to some more tests that were missed

This commit is contained in:
Josh Thomas
2017-05-19 15:04:09 -05:00
parent 0f1efbd7a4
commit abd6713baf
5 changed files with 13 additions and 9 deletions

View File

@ -10,6 +10,6 @@ import { RootPage } from './root-page';
imports: [
IonicPageModule.forChild(RootPage)
],
schemas: [CUSTOM_ELEMENTS_SCHEM]
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class RootPageModule {}

View File

@ -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 {}

View File

@ -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 {}

View File

@ -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 {}

View File

@ -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 {}