Skip to content

Commit

Permalink
Remove unused logging in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
loganvolkers committed May 27, 2024
1 parent ff987d2 commit e825f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/ScopeProvider.reactivity.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const TestCope = createScope<{ number?: number }>({});
const lifecycle = createLifecycleUtils();
const TestMol = molecule(() => {
const scope = use(TestCope);
console.log(scope.number); //In the first case, there is no change, and in the second case, the value from one timing ago is output.
// console.log(scope.number); //In the first case, there is no change, and in the second case, the value from one timing ago is output.
lifecycle.connect(scope.number);
return { scope };
});
Expand Down

0 comments on commit e825f51

Please sign in to comment.