koel/resources/assets/js/components/meta/AboutKoelModal.spec.ts

44 lines
1.1 KiB
TypeScript
Raw Normal View History

import { expect, it } from 'vitest'
import { commonStore } from '@/stores'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
import AboutKoelModel from './AboutKoelModal.vue'
import Btn from '@/components/ui/Btn.vue'
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
protected beforeEach () {
2022-07-04 16:10:58 +00:00
super.beforeEach(() => (VITE_KOEL_ENV = ''))
}
protected test () {
it('renders', async () => {
2022-06-10 10:47:46 +00:00
commonStore.state.current_version = 'v0.0.0'
commonStore.state.latest_version = 'v0.0.0'
const { html } = this.render(AboutKoelModel, {
global: {
stubs: {
Btn
}
}
})
expect(html()).toMatchSnapshot()
})
it('shows new version', () => {
2022-06-10 10:47:46 +00:00
commonStore.state.current_version = 'v1.0.0'
commonStore.state.latest_version = 'v1.0.1'
const { findByTestId } = this.actingAsAdmin().render(AboutKoelModel)
findByTestId('new-version-about')
})
it('shows demo notation', () => {
2022-07-04 16:10:58 +00:00
VITE_KOEL_ENV = 'demo'
const { findByTestId } = this.render(AboutKoelModel)
findByTestId('demo-credits')
})
}
}