mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.6 KiB
41 lines
1.6 KiB
describe('GraphQL Project operations', () => { |
|
|
|
beforeEach(() => { |
|
cy.waitForSpinners(); |
|
cy.signinOrSignup(); |
|
}) |
|
|
|
it('Create Project', () => { |
|
// cy.visit('') |
|
cy.contains('New Project').trigger('onmouseover').trigger('mouseenter'); |
|
cy.get('.create-external-db-project').click() |
|
cy.url({timeout: 6000}).should('contain', '#/project/') |
|
cy.contains('GRAPHQL APIs').closest('label').click() |
|
cy.get('.database-field input').click().clear().type('dummy_db') |
|
cy.contains('Test Database Connection').click() |
|
cy.contains('Ok & Save Project', {timeout: 3000}).click() |
|
cy.url({timeout: 12000}).should('contain', '#/nc/') |
|
}); |
|
|
|
it('Stop Project', () => { |
|
cy.wait(100000) |
|
// cy.get('.nc-graphql-project-row .mdi-stop-circle-outline', {timeout: 10000}).last().trigger('onmouseover').trigger('mouseenter') |
|
cy.get('.nc-graphql-project-row .mdi-stop-circle-outline', {timeout: 10000}).last().invoke('show').click(); |
|
cy.contains('Submit').closest('button').click(); |
|
}); |
|
|
|
it('Start Project', () => { |
|
cy.get('.nc-graphql-project-row .mdi-play-circle-outline', {timeout: 10000}).last().invoke('show').click(); |
|
cy.contains('Submit').closest('button').click(); |
|
}); |
|
it('Restart Project', () => { |
|
cy.get('.nc-graphql-project-row .mdi-restart', {timeout: 10000}).last().invoke('show').click(); |
|
cy.contains('Submit').closest('button').click(); |
|
}); |
|
it('Delete Project', () => { |
|
cy.get('.nc-graphql-project-row .mdi-delete-circle-outline', {timeout: 10000}).last().invoke('show').click(); |
|
cy.contains('Submit').closest('button').click(); |
|
}); |
|
|
|
|
|
})
|
|
|