Scaffolding baseline

This commit is contained in:
2026-07-16 20:47:33 +02:00
parent e9cbc56903
commit 38b4e8fd43
32 changed files with 3114 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
import { render, screen } from '@testing-library/react'
import { describe, expect, it } from 'vitest'
import App from './App'
describe('App', () => {
it('renders the ClusterCanvas shell', () => {
render(<App />)
expect(
screen.getByRole('heading', { name: 'ClusterCanvas' }),
).toBeInTheDocument()
expect(
screen.getByRole('button', { name: 'Check service health' }),
).toBeInTheDocument()
})
})