mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-04 22:28:40 +08:00
47 lines
1.0 KiB
TypeScript
47 lines
1.0 KiB
TypeScript
import setupMiniApp from '../utils/setupMiniApp'
|
|
import { useTheme } from '../../src/hooks/template/useTheme'
|
|
|
|
describe('useTheme', async () => {
|
|
await setupMiniApp()
|
|
|
|
const { darkTheme, lightTheme, toggleTheme, getAppTheme } = useTheme()
|
|
|
|
it('should change to dark theme', () => {
|
|
darkTheme()
|
|
|
|
expect(getAppTheme().theme).toBe(true)
|
|
})
|
|
|
|
it('should change to light theme', () => {
|
|
lightTheme()
|
|
|
|
expect(getAppTheme().theme).toBe(false)
|
|
})
|
|
|
|
it('should toggle theme', () => {
|
|
lightTheme()
|
|
|
|
expect(getAppTheme().theme).toBe(false)
|
|
|
|
toggleTheme()
|
|
|
|
expect(getAppTheme().theme).toBe(true)
|
|
})
|
|
|
|
it('should return current theme', () => {
|
|
darkTheme()
|
|
|
|
const { theme: darkTheme, themeLabel: darkThemeLabel } = getAppTheme()
|
|
|
|
expect(darkTheme).toBe(true)
|
|
expect(darkThemeLabel).toBe('暗色')
|
|
|
|
lightTheme()
|
|
|
|
const { theme: lightTheme, themeLabel: lightThemeLabel } = getAppTheme()
|
|
|
|
expect(lightTheme).toBe(false)
|
|
expect(lightThemeLabel).toBe('明亮')
|
|
})
|
|
})
|