From bab90b5a3e91905e7741ef1cc73cf95ee7290842 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Fri, 29 Jul 2016 09:28:52 -0500 Subject: [PATCH] test(tabs): update karma tests to latest default config --- src/config/test/config.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/test/config.spec.ts b/src/config/test/config.spec.ts index 0593462139..09d360ef3f 100644 --- a/src/config/test/config.spec.ts +++ b/src/config/test/config.spec.ts @@ -107,7 +107,7 @@ describe('Config', () => { config.setPlatform(platform); expect(config.get('mode')).toEqual('md'); - expect(config.get('tabsHighlight')).toEqual(true); + expect(config.get('iconMode')).toEqual('md'); }); it('should override mode settings from platforms setting', () => { @@ -122,7 +122,7 @@ describe('Config', () => { config.setPlatform(platform); expect(config.get('mode')).toEqual('md'); - expect(config.get('tabsHighlight')).toEqual(true); + expect(config.get('iconMode')).toEqual('md'); }); it('should get boolean value from querystring', () => { @@ -261,7 +261,7 @@ describe('Config', () => { let platform = new Platform(['android']); config.setPlatform(platform); - expect(config.get('tabsHighlight')).toEqual(true); + expect(config.get('iconMode')).toEqual('md'); }); it('should get setting from ios mode', () => {