feat: implement version bump workflow and display app version on DashboardPage
This commit is contained in:
11
frontend/src/__tests__/pages/DashboardPage.test.tsx
Normal file
11
frontend/src/__tests__/pages/DashboardPage.test.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { render, screen } from '@testing-library/react'
|
||||
import { describe, expect, it } from 'vitest'
|
||||
import DashboardPage from '@/pages/DashboardPage'
|
||||
|
||||
describe('DashboardPage', () => {
|
||||
it('should_display_app_version_when_rendered', () => {
|
||||
render(<DashboardPage />)
|
||||
|
||||
expect(screen.getByText(/version 0.1.0/i)).toBeInTheDocument()
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user