- Do not render a source handle for the leaf nodes - Upgrade the `@xyflow/react` library | Before | After | |--------|--------| |  |  | ## Other options considered React Flow exposes a hook to get the connections of the current node. I tried to use this hook – which makes things way simpler – but I couldn't find a way to make it work in Storybook. I had two options: 1. Set up React Flow to render the nodes properly, 2. Mock the hook in Storybook. The first option was hard to achieve as the `<Reactflow />` component renders a whole flow, and it doesn't play well with the idea of rendering a single node in a story. The second option seemed overkill as mocking modules with Storybook is not straightforward. See https://storybook.js.org/docs/writing-stories/mocking-data-and-modules/mocking-modules. I chose to keep the initial version of my code, written before I spot a function simplifying the code. We can give it a look another time.
17 lines
648 B
TypeScript
17 lines
648 B
TypeScript
import { expect, test } from '@playwright/test';
|
||
|
||
test.fixme(
|
||
'Check if demo account is working properly @demo-only',
|
||
async ({ page }) => {
|
||
await page.goto('https://app.twenty-next.com/');
|
||
await page.getByRole('button', { name: 'Continue with Email' }).click();
|
||
await page.getByRole('button', { name: 'Continue', exact: true }).click();
|
||
await page.getByRole('button', { name: 'Sign in' }).click();
|
||
await expect(page.getByText('Welcome to Twenty')).not.toBeVisible();
|
||
await page.waitForTimeout(5000);
|
||
await expect(page.getByText('Server’s on a coffee break')).not.toBeVisible({
|
||
timeout: 5000,
|
||
});
|
||
},
|
||
);
|