We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 001c9e7 commit d2a86c5Copy full SHA for d2a86c5
packages/browser-integration-tests/suites/replay/captureConsoleLog/template.html
@@ -8,8 +8,6 @@
8
<button data-log-large>Log button</button>
9
10
<script>
11
- const massiveObject = createLargeObject(10);
12
-
13
document.querySelector('[data-log]').addEventListener('click', () => {
14
console.log('Test log', document.body);
15
});
@@ -31,6 +29,8 @@
31
29
return massiveObject;
32
30
}
33
+ const massiveObject = createLargeObject(10);
+
34
document.querySelector('[data-log-large]').addEventListener('click', () => {
35
console.log(massiveObject);
36
0 commit comments