0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/cypress/e2e/notebooks.cy.ts
Michael Matloka d1c75ab747
fix(environments): Rejig use of insight/dashboard endpoints (#25469)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2024-10-16 16:23:48 +02:00

102 lines
4.1 KiB
TypeScript

import { urls } from 'scenes/urls'
describe('Notebooks', () => {
beforeEach(() => {
cy.fixture('api/session-recordings/recordings.json').then((recordings) => {
cy.intercept('GET', /api\/environments\/\d+\/session_recordings\/?\?.*/, { body: recordings }).as(
'loadSessionRecordingsList'
)
})
cy.fixture('api/session-recordings/recording.json').then((recording) => {
cy.intercept('GET', /api\/environments\/\d+\/session_recordings\/.*\?.*/, { body: recording }).as(
'loadSessionRecording'
)
})
cy.fixture('api/notebooks/notebooks.json').then((notebook) => {
cy.intercept('GET', /api\/projects\/\d+\/notebooks\//, { body: notebook }).as('loadNotebooksList')
})
cy.fixture('api/notebooks/notebook.json').then((notebook) => {
cy.intercept('GET', /api\/projects\/\d+\/notebooks\/.*\//, { body: notebook }).as('loadNotebook')
// bounce the notebook patch back as if it succeeded,
// this means saving doesn't work in Cypress but so what?
cy.intercept('PATCH', /api\/projects\/\d+\/notebooks\/.*\//, (req) => {
req.reply(req.body)
}).as('patchNotebook')
})
cy.clickNavMenu('notebooks')
cy.location('pathname').should('include', '/notebooks')
})
it('Notebooks are enabled', () => {
cy.get('h1').should('contain', 'Notebooks')
cy.get('li').contains('Notebooks').should('exist').click()
})
it('Notebooks can render rich nodes', () => {
cy.visit(urls.notebook('h11RoiwV'))
cy.get('.ph-recording.NotebookNode').should('exist')
})
it('Insertion suggestions can be dismissed', () => {
cy.visit(urls.notebook('h11RoiwV'))
cy.get('.SessionRecordingPlayer').click()
cy.get('.ProseMirror').type('{enter}')
cy.get('.NotebookRecordingTimestamp.opacity-50').should('exist')
cy.get('.ProseMirror').type('{esc}')
cy.get('.NotebookRecordingTimestamp.opacity-50').should('not.exist')
})
// FIXME: fix commenting on recordings
it.skip('Can comment on a recording', () => {
cy.visit(urls.replay())
cy.get('[data-attr="notebooks-add-button"]').click()
cy.get('[data-attr="notebooks-select-button-create"]').click()
cy.get('.Notebook.Notebook--editable').should('be.visible')
cy.get('.ph-recording.NotebookNode').should('be.visible')
cy.get('.NotebookRecordingTimestamp').should('contain.text', '0:00')
})
describe('text types', () => {
beforeEach(() => {
cy.get('li').contains('Notebooks').should('exist').click()
cy.get('[data-attr="new-notebook"]').click()
// we don't actually get a new notebook because the API is mocked
// so, we need to clear the text
cy.get('.NotebookEditor').type('{selectAll}{backSpace}{enter}')
})
it('Can add a number list', () => {
cy.get('.NotebookEditor').type('1. the first')
cy.get('.NotebookEditor').type('{enter}')
// no need to type the number now. it should be inserted automatically
cy.get('.NotebookEditor').type('the second')
cy.get('.NotebookEditor').type('{enter}')
cy.get('ol').should('contain.text', 'the first')
cy.get('ol').should('contain.text', 'the second')
// the numbered list auto inserts the next list item
cy.get('.NotebookEditor ol li').should('have.length', 3)
})
it('Can add bold', () => {
cy.get('.NotebookEditor').type('**bold**')
cy.get('.NotebookEditor p').first().should('contain.html', '<strong>bold</strong>')
})
it('Can add bullet list', () => {
cy.get('.NotebookEditor').type('* the first{enter}the second{enter}')
cy.get('ul').should('contain.text', 'the first')
cy.get('ul').should('contain.text', 'the second')
// the list auto inserts the next list item
cy.get('.NotebookEditor ul li').should('have.length', 3)
})
})
})