Skip to content

Commit aacc27c

Browse files
committed
chore(ci): less debug logging during tests
1 parent 9db6cff commit aacc27c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

starters/apps/e2e/src/components/attributes/attributes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const AttributesChild = component$<{ v: number }>(({ v }) => {
4040
renders.count++;
4141
const rerenders = renders.count + 0;
4242

43-
console.warn(state.stuff);
43+
state.stuff;
4444
return (
4545
<>
4646
<div>

starters/apps/e2e/src/components/render/render.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ const Issue3178 = component$(() => {
512512
id="issue-3178"
513513
ref={(el) => {
514514
store.elements.push(el);
515-
console.warn(store.elements[0].nodeType);
515+
// console.warn(store.elements[0].nodeType);
516516
}}
517517
>
518518
Hello

0 commit comments

Comments
 (0)