Skip to content

Commit

Permalink
update app env validator
Browse files Browse the repository at this point in the history
  • Loading branch information
thekp committed Jul 29, 2019
1 parent d95bade commit b297e40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/support/config/services.js
Expand Up @@ -100,7 +100,7 @@ export default {
pageTypes: {
articles: undefined,
errorPage404:
Cypress.env('APP_ENV') === 'live' || 'test'
Cypress.env('APP_ENV') === 'live' || Cypress.env('APP_ENV') === 'test'
? undefined
: {
asset: 'cxvxrj8tvppo',
Expand Down Expand Up @@ -216,7 +216,7 @@ export default {
pageTypes: {
articles: undefined,
errorPage404:
Cypress.env('APP_ENV') === 'live' || 'test'
Cypress.env('APP_ENV') === 'live' || Cypress.env('APP_ENV') === 'test'
? undefined
: {
asset: 'cxvxrj8tvppo',
Expand Down Expand Up @@ -365,7 +365,7 @@ export default {
pageTypes: {
articles: undefined,
errorPage404:
Cypress.env('APP_ENV') === 'live' || 'test'
Cypress.env('APP_ENV') === 'live' || Cypress.env('APP_ENV') === 'test'
? undefined
: {
asset: 'cxvxrj8tvppo',
Expand Down

0 comments on commit b297e40

Please sign in to comment.