mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-08-02 08:00:10 +02:00

* Create decapitalize.sh script * Remove `text-capitalize` classes, rely on translations instead * `Account Linking` -> `Account linking` * `Account Settings` -> `Account settings` * `Add Affiliation` -> `Add affiliation` * `Add Email` -> `Add email` * `Add Files` -> `Add files` * `Add to Dictionary` -> `Add to dictionary` * `All Projects` -> `All projects` * `All Templates` -> `All templates` * `Archive Projects` -> `Archive projects` * `Archived Projects` -> `Archived projects` * `Auto Compile` -> `Auto compile` * `Back to Subscription` -> `Back to subscription` * `Blank Project` -> `Blank project` * `Change Password` -> `Change password` * `Change Project Owner` -> `Change project owner` * `Clear Sessions` -> `Clear sessions` * `Company Name` -> `Company name` * `Compile Error Handling` -> `Compile error handling` * `Compile Mode` -> `Compile mode` * `Compromised Password` -> `Compromised password` * `Confirm Affiliation` -> `Confirm affiliation` * `Confirm Email` -> `Confirm email` * `Connected Users` -> `Connected users` * `Contact Sales` -> `Contact sales` * `Contact Support` -> `Contact support` * `Contact Us` -> `Contact us` * `Copy Project` -> `Copy project` * `Delete Account` -> `Delete account` * `Emails and Affiliations` -> `Emails and affiliations` * `Git Integration` -> `Git integration` * `Group Settings` -> `Group settings` * `Link Accounts` -> `Link accounts` * `Make Primary` -> `Make primary` * `Mendeley Integration` -> `Mendeley integration` * `Papers Integration` -> `Papers integration` * `Project Synchronisation` -> `Project synchronisation` * `Sessions Cleared` -> `Sessions cleared` * `Stop Compilation` -> `Stop compilation` * `Update Account Info` -> `Update account info` * `the Sales team` -> `the sales team` * `your Group settings` -> `your group settings` * `Zotero Integration` -> `Zotero integration` * Update decapitalize.sh * Decapitalize some translations * `Example Project` -> `Example project` * `New Project` -> `New project` * `New Tag` -> `New tag` * `Trashed Projects` -> `Trashed projects` * `Upload Project` -> `Upload project` * `Your Projects` -> `Your projects` * Revert "Create decapitalize.sh script" This reverts commit 8c79f367096c206c704c7c01e3572a18f3961d5e. * Revert changes to stories * Fix tests * `Contact us of` -> `Contact us if` * Make `Contact us` bold in tex files * `sales team` -> `Sales team` * `Link accounts and Add email` -> `Link accounts and add email` * `Make Private` -> `Make private` * `contact support` -> `contact Support` * Make `Make primary` tests case sensitive * Use `add_email` translation string * Revert changes to non-english locales * Remove redundant `Account settings` translation * `New project Name` -> `New project name` GitOrigin-RevId: 675c46f96ddbf3d259a8d723fed62aa4a7ed40b7
48 lines
1.9 KiB
TypeScript
48 lines
1.9 KiB
TypeScript
import { expect } from 'chai'
|
|
import { fireEvent, render, screen, waitFor } from '@testing-library/react'
|
|
import HasIndividualRecurlySubscription from '../../../../../../frontend/js/features/subscription/components/group-invite/has-individual-recurly-subscription'
|
|
import sinon from 'sinon'
|
|
import fetchMock from 'fetch-mock'
|
|
|
|
describe('group invite', function () {
|
|
describe('user has a personal subscription', function () {
|
|
afterEach(function () {
|
|
fetchMock.removeRoutes().clearHistory()
|
|
})
|
|
|
|
it('shows option to cancel subscription', async function () {
|
|
render(<HasIndividualRecurlySubscription setView={() => {}} />)
|
|
await screen.findByText(
|
|
'You already have an individual subscription, would you like us to cancel this first before joining the group licence?'
|
|
)
|
|
screen.getByRole('button', { name: 'Not now' })
|
|
screen.getByRole('button', { name: 'Cancel your subscription' })
|
|
})
|
|
|
|
it('handles subscription cancellation and calls to change invite view', async function () {
|
|
fetchMock.post('/user/subscription/cancel', 200)
|
|
const setView = sinon.stub()
|
|
render(<HasIndividualRecurlySubscription setView={setView} />)
|
|
const button = await screen.findByRole('button', {
|
|
name: 'Cancel your subscription',
|
|
})
|
|
fireEvent.click(button)
|
|
await waitFor(() => {
|
|
expect(setView).to.have.been.calledOnce
|
|
})
|
|
})
|
|
|
|
it('shows error message when cancelling subscription fails', async function () {
|
|
render(<HasIndividualRecurlySubscription setView={() => {}} />)
|
|
const button = await screen.findByRole('button', {
|
|
name: 'Cancel your subscription',
|
|
})
|
|
fireEvent.click(button)
|
|
await waitFor(() => {
|
|
screen.getByText(
|
|
'Something went wrong canceling your subscription. Please contact Support.'
|
|
)
|
|
})
|
|
})
|
|
})
|
|
})
|