overleaf/server-ce/test/helpers/project.ts
Jakob Ackermann b75d183cfc Merge pull request #18635 from overleaf/jpa-test-upgrade
[server-pro] add tests for upgrade process

GitOrigin-RevId: eaa1486688cb2fa544adaaee16da04fd757a1b65
2024-06-12 08:04:48 +00:00

22 lines
647 B
TypeScript

export function createProject(
name: string,
{
type = 'Blank Project',
newProjectButtonMatcher = /new project/i,
}: {
type?: 'Blank Project' | 'Example Project'
newProjectButtonMatcher?: RegExp
} = {}
): Cypress.Chainable<string> {
cy.findAllByRole('button').contains(newProjectButtonMatcher).click()
// FIXME: This should only look in the left menu
cy.findAllByText(type).first().click()
cy.findByRole('dialog').within(() => {
cy.get('input').type(name)
cy.findByText('Create').click()
})
return cy
.url()
.should('match', /\/project\/[a-fA-F0-9]{24}/)
.then(url => url.split('/').pop())
}