mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +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('Dark')
|
|
|
|
lightTheme()
|
|
|
|
const { theme: __lightTheme, themeLabel: __lightThemeLabel } = getAppTheme()
|
|
|
|
expect(__lightTheme).toBe(false)
|
|
expect(__lightThemeLabel).toBe('Light')
|
|
})
|
|
})
|