enso/app/gui2/e2e/fullscreenVisualisation.spec.ts
Paweł Grabarz b7a8909818
Vue dependency update, better selection performance, visible quotes in text inputs (#9204)
- Improved performance by batching simulatenous node edits, including metadata updates when dragging many selected nodes together.
- Updated Vue to new version, allowing us to use `defineModel`.
- Fixed #9161
- Unified all handling of auto-blur by making `useAutoBlur` cheap to register - all logic goes through a single window event handler.
- Combined all `ResizeObserver`s into one.
- Fixed the behaviour of repeated toast messages. Now only the latest compilation status is visible at any given time, and the errors disappear once compilation passes.
- Actually fixed broken interaction of node and visualization widths. There no longer is a style feedback loop and the visible node backdrop width no longer jumps or randomly fails to update.
2024-03-06 15:34:07 +00:00

60 lines
1.7 KiB
TypeScript

import { test } from '@playwright/test'
import * as actions from './actions'
import { expect } from './customExpect'
import * as locate from './locate'
import { graphNodeByBinding } from './locate'
/**
Scenario: We open the default visualisation of the `aggregated` node. We then make it fullscreen and expect it to show
the JSON data of the node. We also expect it to cover the whole screen and to have a button to exit fullscreen mode.
*/
test('Load Fullscreen Visualisation', async ({ page }) => {
await actions.goToGraph(page)
const aggregatedNode = graphNodeByBinding(page, 'aggregated')
await aggregatedNode.click()
await page.keyboard.press('Space')
await page.waitForTimeout(1000)
const fullscreenButton = locate.enterFullscreenButton(aggregatedNode)
await fullscreenButton.click()
const vis = locate.jsonVisualization(page)
await expect(vis).toExist()
await expect(locate.exitFullscreenButton(page)).toExist()
const visBoundingBox = await vis.boundingBox()
expect(visBoundingBox?.height).toBeGreaterThan(600)
expect(visBoundingBox?.width).toBe(1920)
const jsonContent = await vis.textContent().then((text) => JSON.parse(text!))
expect(jsonContent).toEqual({
axis: {
x: {
label: 'x-axis label',
scale: 'linear',
},
y: {
label: 'y-axis label',
scale: 'logarithmic',
},
},
points: {
labels: 'visible',
},
data: [
{
x: 0.1,
y: 0.7,
label: 'foo',
color: '#FF0000',
shape: 'circle',
size: 0.2,
},
{
x: 0.4,
y: 0.2,
label: 'baz',
color: '#0000FF',
shape: 'square',
size: 0.3,
},
],
})
})