mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-12 22:26:08 -04:00
29 lines
964 B
TypeScript
29 lines
964 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import * as UseDarkModeStateModule from './use-dark-mode-state'
|
|
import { useOutlineButtonVariant } from './use-outline-button-variant'
|
|
import { render, screen } from '@testing-library/react'
|
|
import React from 'react'
|
|
|
|
jest.mock('./use-dark-mode-state')
|
|
|
|
describe('useOutlineButtonVariant', () => {
|
|
const TestComponent: React.FC = () => {
|
|
return useOutlineButtonVariant()
|
|
}
|
|
|
|
it('returns the correct variant for dark mode', async () => {
|
|
jest.spyOn(UseDarkModeStateModule, 'useDarkModeState').mockReturnValue(true)
|
|
render(<TestComponent />)
|
|
await screen.findByText('outline-light')
|
|
})
|
|
|
|
it('returns the correct variant for light mode', async () => {
|
|
jest.spyOn(UseDarkModeStateModule, 'useDarkModeState').mockReturnValue(false)
|
|
render(<TestComponent />)
|
|
await screen.findByText('outline-dark')
|
|
})
|
|
})
|