You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Summary
- move app monitor tests off raw `tools.spawn` mocks by introducing
wrapper helpers for Android logcat and iOS simulator log streaming
- keep command-shape assertions in `adb` and `simctl` wrapper tests
where the shell boundary is the actual behavior under test
- preserve full test coverage for the refactor and verify the repo-wide
test suite still passes
## Testing
- `pnpm vitest src/__tests__/app-monitor.test.ts
src/__tests__/adb.test.ts`
- `pnpm vitest src/__tests__/app-monitor.test.ts
src/__tests__/simctl.test.ts`
- `pnpm test:all`
Copy file name to clipboardExpand all lines: actions/shared/index.cjs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4427,7 +4427,7 @@ var ConfigSchema = external_exports.object({
4427
4427
coverage: external_exports.object({
4428
4428
root: external_exports.string().optional().describe(`Root directory for coverage instrumentation in monorepo setups. Specifies the directory from which coverage data should be collected. Use ".." for create-react-native-library projects where tests run from example/ but source files are in parent directory. Passed to babel-plugin-istanbul's cwd option.`)
4429
4429
}).optional(),
4430
-
forwardClientLogs: external_exports.boolean().optional().default(false).describe("Enable forwarding of console.log, console.warn, console.error, and other console method calls from the React Native app to the terminal. When enabled, all console output from your app will be displayed in the test runner terminal with styled level indicators (log, warn, error)."),
4430
+
forwardClientLogs: external_exports.boolean().optional().default(false).describe("Enable forwarding of console.log, console.warn, console.error, and other console method calls from the React Native app during the active test run. When enabled, app console output is attached to the active test result's console output."),
4431
4431
// Deprecated property - used for migration detection
0 commit comments