console plugin fix (#832)

* fix: empty payload in console-plugin

* update unit test
This commit is contained in:
Yun Feng
2026-04-01 12:00:00 +08:00
committed by GitHub
parent da0a3b8fff
commit 80ceb5ba25
3 changed files with 18 additions and 0 deletions

View File

@@ -471,6 +471,7 @@ describe('record integration tests', function (this: ISuite) {
console.trace('trace');
console.warn('warn');
console.clear();
console.log(new TypeError('a message'));
const iframe = document.createElement('iframe');
document.body.appendChild(iframe);
});