0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress/integration/setup.js
Eric Duong d7fe71f083
1247 annotations crud (#1258)
* working table

* add modal

* continue adding to modal

* added function to create global annotation

* format

* test commit

* add precommit

* add update function

* crud working

* add type

* fix tests

* add next

* add prompt

* tests
2020-07-22 12:25:54 +02:00

24 lines
766 B
JavaScript

describe('Setup', () => {
it('Setup loaded', () => {
cy.get('[data-attr=menu-item-settings]').click()
cy.get('[data-attr=layout-content]').should('exist')
})
it('See suggestion and save', () => {
cy.getCookie('csrftoken').then((csrftoken) => {
cy.request({
url: '/api/user/',
body: { team: { app_urls: [] } },
method: 'PATCH',
headers: {
'X-CSRFToken': csrftoken.value,
},
})
})
cy.reload(true)
cy.get('[data-attr=menu-item-settings]').click()
cy.get('[data-attr=app-url-suggestion]').click()
cy.get('[data-attr=app-url-item]').should('contain', '/demo')
})
})