diff --git a/.env b/.env index e05ab8329..bc72c9274 100644 --- a/.env +++ b/.env @@ -25,5 +25,5 @@ FAVICON_URL='' ENABLE_LEARNER_RECORD_MFE='' LEARNER_RECORD_MFE_BASE_URL='' COLLECT_YEAR_OF_BIRTH=true -APP_ID= -MFE_CONFIG_API_URL= +APP_ID='' +MFE_CONFIG_API_URL='' diff --git a/.env.development b/.env.development index d184bd6c9..edb383079 100644 --- a/.env.development +++ b/.env.development @@ -26,5 +26,5 @@ FAVICON_URL=https://edx-cdn.org/v3/default/favicon.ico ENABLE_LEARNER_RECORD_MFE='' LEARNER_RECORD_MFE_BASE_URL='http://localhost:1990' COLLECT_YEAR_OF_BIRTH=true -APP_ID= -MFE_CONFIG_API_URL= +APP_ID='' +MFE_CONFIG_API_URL='' \ No newline at end of file diff --git a/.env.test b/.env.test index 07735a05d..4e926bca6 100644 --- a/.env.test +++ b/.env.test @@ -20,5 +20,5 @@ FAVICON_URL=https://edx-cdn.org/v3/default/favicon.ico ENABLE_LEARNER_RECORD_MFE='' LEARNER_RECORD_MFE_BASE_URL='http://localhost:1990' COLLECT_YEAR_OF_BIRTH=true -APP_ID= -MFE_CONFIG_API_URL= +APP_ID='' +MFE_CONFIG_API_URL='' diff --git a/src/head/Head.test.jsx b/src/head/Head.test.jsx index 11a67f23c..91eab5eb5 100644 --- a/src/head/Head.test.jsx +++ b/src/head/Head.test.jsx @@ -7,7 +7,7 @@ import Head from './Head'; describe('Head', () => { const props = {}; - it('should match render title tag and fivicon with the site configuration values', () => { + it('should match render title tag and favicon with the site configuration values', () => { mount(); const helmet = Helmet.peek(); expect(helmet.title).toEqual(`Profile | ${getConfig().SITE_NAME}`);