fix(web): remove mock echo function from web test app
- Remove echo function from mock DailyNotification plugin - Align web version with Android version (no echo test) - Ensure consistent behavior across all test platforms This completes the echo test removal across all platforms: - Android: Removed echo method from plugin and test app - Web: Removed mock echo function - iOS: Already updated in previous commit All test apps now use direct notification testing without echo dependency.
This commit is contained in:
@@ -70,9 +70,6 @@
|
|||||||
if (!window.DailyNotification) {
|
if (!window.DailyNotification) {
|
||||||
console.log('Creating mock DailyNotification plugin...');
|
console.log('Creating mock DailyNotification plugin...');
|
||||||
window.DailyNotification = {
|
window.DailyNotification = {
|
||||||
echo: function(options) {
|
|
||||||
return Promise.resolve({ value: `Mock echo: ${options.value}` });
|
|
||||||
},
|
|
||||||
configure: function(config) {
|
configure: function(config) {
|
||||||
console.log('Mock configure called with:', config);
|
console.log('Mock configure called with:', config);
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
|
|||||||
Reference in New Issue
Block a user