
* lift node version restraint to allow more recent version if already installed * add node test for latest version * change python version * use purple for debug logs * update workflow * add playwright dev dependency * update workflow * change test * oops * improve test * update test * fix tests * mv units tests to a subfolder * reorganize tests * fix install * update test_state * revert node changes and only keep new tests organization * move integration tests in tests/integration * fix integration workflow * fix dockerfile workflow * fix dockerfile workflow 2 * fix shared_state
35 lines
779 B
Python
35 lines
779 B
Python
"""Common rx.BaseState subclasses for use in tests."""
|
|
|
|
import reflex as rx
|
|
from reflex.state import BaseState
|
|
|
|
from .mutation import DictMutationTestState, ListMutationTestState, MutableTestState
|
|
from .upload import (
|
|
ChildFileUploadState,
|
|
FileStateBase1,
|
|
FileStateBase2,
|
|
FileUploadState,
|
|
GrandChildFileUploadState,
|
|
SubUploadState,
|
|
UploadState,
|
|
)
|
|
|
|
|
|
class GenState(BaseState):
|
|
"""A state with event handlers that generate multiple updates."""
|
|
|
|
value: int
|
|
|
|
def go(self, c: int):
|
|
"""Increment the value c times and update each time.
|
|
|
|
Args:
|
|
c: The number of times to increment.
|
|
|
|
Yields:
|
|
After each increment.
|
|
"""
|
|
for _ in range(c):
|
|
self.value += 1
|
|
yield
|