mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-02 18:10:18 +05:30
10 lines
347 B
TypeScript
10 lines
347 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { render, screen } from '@testing-library/react';
|
|
import { TabBar } from '@/components/layout/TabBar';
|
|
|
|
describe('TabBar', () => {
|
|
it('renders an empty state when no tabs are open', () => {
|
|
render(<TabBar />);
|
|
expect(screen.getByText(/no files open/i)).toBeInTheDocument();
|
|
});
|
|
}); |