Skip to content

Commit

Permalink
improve lounch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
JiglioNero committed Jan 25, 2021
1 parent 52d9745 commit 30e02f3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion test/smoke/package/resources/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,14 @@
"platform": "windows"
},
{
"name": "Debug Android (Hermes) - Experimental",
"name": "Debug iOS Hermes - Experimental",
"cwd": "${workspaceFolder}",
"type": "reactnativedirect",
"request": "launch",
"platform": "ios"
},
{
"name": "Debug Android Hermes - Experimental",
"cwd": "${workspaceFolder}",
"type": "reactnativedirect",
"request": "launch",
Expand Down
2 changes: 1 addition & 1 deletion test/smoke/package/src/directDebug.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { sleep } from "./helpers/utilities";
import { androidEmulatorManager, iosSimulatorManager, vscodeManager } from "./main";

const HERMES_APP_PACKAGE_NAME = `com.${SmokeTestsConstants.HermesAppName.toLocaleLowerCase()}`;
const HERMES_APP_BUNDLE_ID = "org.reactjs.native.example.latestHermesRNApp";
const HERMES_APP_BUNDLE_ID = `org.reactjs.native.example.${SmokeTestsConstants.HermesAppName}`;
const HERMES_APP_ACTIVITY_NAME = `com.${SmokeTestsConstants.HermesAppName.toLocaleLowerCase()}.MainActivity`;
const RNAndroidHermesDebugConfigName = "Debug Android Hermes - Experimental";
const RNIosHermesDebugConfigName = "Debug iOS Hermes - Experimental";
Expand Down

0 comments on commit 30e02f3

Please sign in to comment.