Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion apps/desktop/e2e/workhub-layout.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,20 @@
* under the License.
*/

import { COMPOSER_INPUT, expect, test, waitForWorkHubReady } from './fixtures';
import {
awaitSendReady,
COMPOSER_INPUT,
expect,
test,
waitForWorkHubReady,
} from './fixtures';

test('WorkHub target metadata remains within the submitted Session control', async ({
window: page,
}) => {
const composer = page.locator(COMPOSER_INPUT);
await composer.fill('支付回调幂等性');
await awaitSendReady(page);
await composer.press('Enter');
await expect(page.getByRole('button', { name: '重新生成' })).toHaveCount(1, {
timeout: 20_000,
Expand Down
Loading