Partially revert #32437 and add a test that console.log() messages from content scripts are properly reported Fixes https://github.com/microsoft/playwright/issues/32762
5 lines
134 B
JavaScript
5 lines
134 B
JavaScript
console.log("Service worker script loaded");
|
|
|
|
chrome.runtime.onInstalled.addListener(() => {
|
|
console.log("Extension installed");
|
|
}); |