mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
34 lines
890 B
TypeScript
34 lines
890 B
TypeScript
import setupMiniApp from '../utils/setupMiniApp'
|
|
import { useWatermark } from '../../src/hooks/template/useWatermark'
|
|
import { useSettingGetters } from '../../src/store'
|
|
|
|
describe('useWatermark', async () => {
|
|
await setupMiniApp()
|
|
|
|
const { setWatermarkContent, showWatermark, hiddenWatermark } = useWatermark()
|
|
|
|
it('should set watermark content', () => {
|
|
const { getWatermarkConfig } = useSettingGetters()
|
|
const watermarkConfig = getWatermarkConfig.value
|
|
const content = 'Ray Template Yes!'
|
|
|
|
setWatermarkContent(content)
|
|
|
|
expect(watermarkConfig.content).toBe(content)
|
|
})
|
|
|
|
it('should update watermark', () => {
|
|
showWatermark()
|
|
|
|
const { getWatermarkSwitch: show } = useSettingGetters()
|
|
|
|
expect(show.value).toBe(true)
|
|
|
|
hiddenWatermark()
|
|
|
|
const { getWatermarkSwitch: hidden } = useSettingGetters()
|
|
|
|
expect(hidden.value).toBe(false)
|
|
})
|
|
})
|