feat(journey-editor): JourneyEditor frontend — issue #753 #792

Open
marcel wants to merge 92 commits from feat/issue-753-journey-editor into feat/issue-750-lesereisen-data-model
Showing only changes of commit 8df5b77189 - Show all commits

View File

@@ -3,7 +3,10 @@ import { cleanup, render } from 'vitest-browser-svelte';
import { page, userEvent } from 'vitest/browser';
import JourneyAddBar from './JourneyAddBar.svelte';
afterEach(() => cleanup());
afterEach(() => {
cleanup();
vi.unstubAllGlobals();
});
describe('JourneyAddBar — interlude flow', () => {
it('interlude confirm button is aria-disabled until text is non-empty', async () => {
@@ -48,6 +51,5 @@ describe('JourneyAddBar — document picker', () => {
await userEvent.click(page.getByText('Brief hinzufügen'));
await expect.element(page.getByRole('combobox')).toBeInTheDocument();
vi.unstubAllGlobals();
});
});