Skip to content

Commit d1c70ee

Browse files
Fix test case for updated modal depth option labels
Co-authored-by: kevinjosethomas <46242684+kevinjosethomas@users.noreply.github.com>
1 parent 9455ed0 commit d1c70ee

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

__tests__/components/Analysis/AnalyzeEntireGame.test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ describe('Analyze Entire Game Components', () => {
3535
it('renders depth options', () => {
3636
render(<AnalysisConfigModal {...defaultProps} />)
3737

38-
expect(screen.getByText('Depth 12 - Fast')).toBeInTheDocument()
39-
expect(screen.getByText('Depth 15 - Balanced')).toBeInTheDocument()
40-
expect(screen.getByText('Depth 18 - Deep')).toBeInTheDocument()
38+
expect(screen.getByText('Fast (d12)')).toBeInTheDocument()
39+
expect(screen.getByText('Balanced (d15)')).toBeInTheDocument()
40+
expect(screen.getByText('Deep (d18)')).toBeInTheDocument()
4141
})
4242

4343
it('renders start analysis button', () => {

0 commit comments

Comments
 (0)