Skip to content

Commit

Permalink
Add ResearchProject tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fsimonjetz committed Jun 29, 2023
1 parent 8838803 commit 849d76f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/fragmentarium/ui/info/ResearchProjects.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import React from 'react'
import { render, screen } from '@testing-library/react'

import { fragmentFactory } from 'test-support/fragment-fixtures'
import { Fragment } from 'fragmentarium/domain/fragment'
import { ProjectList } from './ResearchProjects'
import { ResearchProjects } from 'research-projects/researchProject'

let fragment: Fragment
const project = ResearchProjects.CAIC

beforeEach(async () => {
fragment = fragmentFactory.build(
{},
{
associations: {
projects: [project],
},
}
)
render(<ProjectList fragment={fragment} />)
})

it('Renders logo', () => {
expect(screen.getByAltText(project.name)).toHaveAttribute('src', project.logo)
})

it('Links to project website', () => {
expect(
screen.getByLabelText(`Link to ${project.name} project`)
).toHaveAttribute('href', project.url)
})

0 comments on commit 849d76f

Please sign in to comment.