koel/resources/assets/js/components/koel-plus/ActivateLicenseForm.spec.ts
2024-07-06 17:45:01 +02:00

22 lines
714 B
TypeScript

import { screen } from '@testing-library/vue'
import { expect, it } from 'vitest'
import UnitTestCase from '@/__tests__/UnitTestCase'
import { plusService } from '@/services'
import Form from './ActivateLicenseForm.vue'
new class extends UnitTestCase {
protected test () {
it('activates license', async () => {
this.renderComponent()
const activateMock = this.mock(plusService, 'activateLicense').mockResolvedValueOnce('')
await this.type(screen.getByRole('textbox'), 'my-license-key')
await this.user.click(screen.getByText('Activate'))
expect(activateMock).toHaveBeenCalledWith('my-license-key')
})
}
private renderComponent () {
return this.render(Form)
}
}