overleaf/server-ce/test/helpers/project.ts
Jakob Ackermann 8eb8b233c0 Merge pull request #18316 from overleaf/jpa-host-admin
[server-ce] e2e tests: add capability for reconfiguring the instance

GitOrigin-RevId: 44ec800b5b37497b3122310a94f637c24ff2667a
2024-05-30 08:05:22 +00:00

22 lines
565 B
TypeScript

export function createProject(
name: string,
{
type = 'Blank Project',
}: {
type?: 'Blank Project' | 'Example Project'
} = {}
): Cypress.Chainable<string> {
cy.findAllByRole('button')
.contains(/new project/i)
.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())
}