2 of 11 new UI tests fail — both are Phase 3 mock-network tests:
testAlbumTracksWithMockData — fails at line 198: "Album category should be visible with mock data"testDecodingErrorShowsMessage — fails at line 186: "Should show either Not Connected or Browse section"Both fail because the -MockNetwork launch argument isn't being picked up by the app to register the MockURLProtocol, so the mock data never reaches the views.
Both mock-network tests pass when run via xcodebuild test.
testAlbumTracksWithMockData passestestDecodingErrorShowsMessage passes-MockNetwork launch arg correctly registers MockURLProtocol in the appMixBoardApp.swift — does it check for -MockNetwork launch argument?MockURLProtocol — is it in the app target (Sources/) or only in the test target (UITests/)?-MockNetwork via app.launchArguments?MockURLProtocol must be available to the main app target (not just UITests) for runtime URL interception to work. Use #if DEBUG guard so it's stripped from release builds.