Skip to content

Commit

Permalink
chore: remove getenv
Browse files Browse the repository at this point in the history
  • Loading branch information
astone123 committed Sep 26, 2022
1 parent 3b54f3f commit 6b6d93c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions packages/app/cypress.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { defineConfig } from 'cypress'
import getenv from 'getenv'
import { initGitRepoForTestProject, resetGitRepoForTestProject } from './cypress/tasks/git'

export default defineConfig({
projectId: getenv('CYPRESS_INTERNAL_DEV_PROJECT_ID', process.env.CYPRESS_INTERNAL_DEV_PROJECT_ID || 'ypt4pf'),
projectId: 'ypt4pf',
retries: {
runMode: 2,
openMode: 0,
Expand Down
3 changes: 1 addition & 2 deletions packages/frontend-shared/cypress.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { defineConfig } from 'cypress'
import getenv from 'getenv'

export default defineConfig({
projectId: getenv('CYPRESS_INTERNAL_DEV_PROJECT_ID', process.env.CYPRESS_INTERNAL_DEV_PROJECT_ID || 'ypt4pf'),
projectId: 'ypt4pf',
viewportWidth: 800,
viewportHeight: 850,
retries: {
Expand Down
3 changes: 1 addition & 2 deletions packages/launchpad/cypress.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { defineConfig } from 'cypress'
import getenv from 'getenv'
import { snapshotCypressDirectory } from './cypress/tasks/snapshotsScaffold'
import { uninstallDependenciesInScaffoldedProject } from './cypress/tasks/uninstallDependenciesInScaffoldedProject'

export default defineConfig({
projectId: getenv('CYPRESS_INTERNAL_DEV_PROJECT_ID', process.env.CYPRESS_INTERNAL_DEV_PROJECT_ID || 'ypt4pf'),
projectId: 'ypt4pf',
viewportWidth: 800,
viewportHeight: 850,
retries: {
Expand Down

0 comments on commit 6b6d93c

Please sign in to comment.