Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
ca8a5f4
fix(runtime-host): serve revision-consistent usage snapshots
Sun-GLiang Aug 28, 2026
237542d
Merge remote-tracking branch 'upstream/main' into fix/4058-usage-snap…
Sun-GLiang Aug 29, 2026
acf8077
fix(runtime-host): lease usage snapshots to connections
Sun-GLiang Aug 31, 2026
046828c
fix(desktop): release usage snapshot leases
Sun-GLiang Aug 31, 2026
0dfe64f
Merge upstream/main into fix/4058-usage-snapshot-consistency
Sun-GLiang Aug 31, 2026
6bb4474
fix(runtime-host): reserve usage snapshot capacity
Sun-GLiang Aug 31, 2026
73baf0a
Merge upstream/main into fix/4058-usage-snapshot-consistency
Sun-GLiang Aug 31, 2026
4b717f3
chore(test): refresh Windows skip inventory
Sun-GLiang Aug 31, 2026
0dafb3c
Merge remote-tracking branch 'upstream/main' into fix/4058-usage-snap…
Sun-GLiang Sep 1, 2026
bdf0faf
Merge remote-tracking branch 'upstream/main' into fix/4058-usage-snap…
Sun-GLiang Sep 2, 2026
6014925
Merge remote-tracking branch 'upstream/main' into fix/4058-usage-snap…
Sun-GLiang Sep 2, 2026
1b3800a
Merge upstream/main into fix/4058-usage-snapshot-consistency
Sun-GLiang Sep 3, 2026
d54e03e
ci: retry transient Node test runner failure
Sun-GLiang Sep 3, 2026
3415280
fix(runtime-host): retry busy usage snapshots
Sun-GLiang Sep 3, 2026
f599d71
Merge upstream/main into fix/4058-usage-snapshot-consistency
Sun-GLiang Sep 3, 2026
e9dc989
Merge apache/maka main into fix/4058-usage-snapshot-consistency
Sun-GLiang Sep 3, 2026
95ce5ec
Merge upstream/main into fix/4058-usage-snapshot-consistency
Sun-GLiang Sep 3, 2026
4fa7e8f
Merge upstream/main into fix/4058-usage-snapshot-consistency
Sun-GLiang Sep 4, 2026
42491ab
Merge remote-tracking branch 'upstream/main' into fix/4058-usage-snap…
Sun-GLiang Sep 4, 2026
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