/**
* Simple working test for app-state testing system
*/
import { fireEvent, screen } from "@testing-library/react"
import React from "react"
import { describe, expect, it } from "vitest"
import { renderWithAppState } from "./test-utils"
// Simple test component
function SimpleTestComponent() {
const [count, setCount] = React.useState(0)
return (