import { render, screen } from '@testing-library/react' import React from 'react' import Bookmark from './Bookmark' import { datasetAquarius } from '../../../../.jest/__fixtures__/datasetAquarius' describe('src/components/Asset/AssetContent/Bookmark.tsx', () => { it('renders Add Bookmark button', () => { render() expect(screen.getByTitle('Add Bookmark')).toBeInTheDocument() }) })