Skip to content

Commit

Permalink
[CP-3286] Enabled device logger on the feature branch for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarski committed Dec 20, 2024
1 parent a62a37b commit efad0fd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nexus-feature-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
FEATURE_TOGGLE_ENVIRONMENT: ${{ secrets.FEATURE_TOGGLE_ENVIRONMENT }}
STATIC_CONFIGURATION_FILE_PATH: ${{ secrets.STATIC_CONFIGURATION_FILE_PATH }}
DEV_REDUX_LOGGER_ENABLED: ${{ secrets.DEV_REDUX_LOGGER_ENABLED }}
DEV_DEVICE_LOGGER_ENABLED: ${{ secrets.DEV_DEVICE_LOGGER_ENABLED }}
FEATURE_TOGGLE_RELEASE_ENVIRONMENT: ${{ secrets.FEATURE_TOGGLE_RELEASE_ENVIRONMENT }}
DEV_DEVICE_LOGGER_ENABLED: "1"
DEV_TOOLS_SHORTCUT_ENABLED: "1"
MOCK_SERVICE_ENABLED: "1"
LOCALAPPDATA: ""
Expand Down Expand Up @@ -77,8 +77,8 @@ jobs:
FEATURE_TOGGLE_ENVIRONMENT: ${{ secrets.FEATURE_TOGGLE_ENVIRONMENT }}
STATIC_CONFIGURATION_FILE_PATH: ${{ secrets.STATIC_CONFIGURATION_FILE_PATH }}
DEV_REDUX_LOGGER_ENABLED: ${{ secrets.DEV_REDUX_LOGGER_ENABLED }}
DEV_DEVICE_LOGGER_ENABLED: ${{ secrets.DEV_DEVICE_LOGGER_ENABLED }}
FEATURE_TOGGLE_RELEASE_ENVIRONMENT: ${{ secrets.FEATURE_TOGGLE_RELEASE_ENVIRONMENT }}
DEV_DEVICE_LOGGER_ENABLED: "1"
DEV_TOOLS_SHORTCUT_ENABLED: "1"
MOCK_SERVICE_ENABLED: "1"
KOMPAKT_OS_UPDATE_DEV_TOKEN: ${{ secrets.KOMPAKT_OS_UPDATE_DEV_TOKEN }}
Expand Down Expand Up @@ -106,8 +106,8 @@ jobs:
FEATURE_TOGGLE_ENVIRONMENT: ${{ secrets.FEATURE_TOGGLE_ENVIRONMENT }}
STATIC_CONFIGURATION_FILE_PATH: ${{ secrets.STATIC_CONFIGURATION_FILE_PATH }}
DEV_REDUX_LOGGER_ENABLED: ${{ secrets.DEV_REDUX_LOGGER_ENABLED }}
DEV_DEVICE_LOGGER_ENABLED: ${{ secrets.DEV_DEVICE_LOGGER_ENABLED }}
FEATURE_TOGGLE_RELEASE_ENVIRONMENT: ${{ secrets.FEATURE_TOGGLE_RELEASE_ENVIRONMENT }}
DEV_DEVICE_LOGGER_ENABLED: "1"
DEV_TOOLS_SHORTCUT_ENABLED: "1"
MOCK_SERVICE_ENABLED: "1"
KOMPAKT_OS_UPDATE_DEV_TOKEN: ${{ secrets.KOMPAKT_OS_UPDATE_DEV_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* For licensing, see https://github.com/mudita/mudita-center/blob/master/LICENSE.md
*/

import { E2EMockClient } from "e2e-mock-client"
import { E2EMockClient } from "../../../../libs/e2e-mock/client/src/lib/e2e-mock-client"
import { generateUniqueNumber } from "./utils/generate-unique-number-id.helper"
import { generateBase64Info } from "./utils/generate-base-64-info.helper"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { E2EMockClient } from "../../../../../libs/e2e-mock/client/src"
import { DEFAULT_RESPONSES } from "../../../../../libs/e2e-mock/responses/src"
import { mockEntityDownloadProcess } from "E2E/helpers"
import { mockEntityDownloadProcess } from "../../helpers/mock-entity-download-process.helper"
import {
audioFileEntities,
selectedContactsEntities,
} from "E2E/helpers/entity-fixtures"
} from "../../helpers/entity-fixtures"

function getBodyAsRecord(body: unknown): Record<string, any> {
return body ? (body as Record<string, any>) : {}
Expand Down

0 comments on commit efad0fd

Please sign in to comment.