Skip to content

Commit 7a83f6f

Browse files
committed
update e2e tests
1 parent e57303f commit 7a83f6f

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

packages/extension/test/e2e/control-panel.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ test.describe('Control Panel', () => {
116116
await expect(popupPage.locator('table tr')).toHaveCount(3);
117117
});
118118

119-
// TODO: Implement this test once the ping method is implemented
119+
// TODO: Fix this test once the ping method is implemented
120120
test.skip('should ping a vat', async () => {
121121
await expect(
122122
popupPage.locator('td button:text("Ping")').first(),

packages/nodejs/test/e2e/kernel-worker.test.ts

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import '@ocap/shims/endoify';
22

33
import { Kernel } from '@ocap/kernel';
4-
import type { VatConfig, VatId } from '@ocap/kernel';
4+
import type { VatConfig } from '@ocap/kernel';
55
import {
66
MessageChannel as NodeMessageChannel,
77
MessagePort as NodePort,
@@ -71,17 +71,8 @@ describe('Kernel Worker', () => {
7171
expect(kernel.getVatIds()).toHaveLength(0);
7272
});
7373

74-
it('pings vats', async () => {
75-
await launchTestVats();
76-
await Promise.all(
77-
testVatIds.map(
78-
async (vatId: VatId) =>
79-
await kernel.sendVatCommand(vatId, {
80-
method: 'ping',
81-
params: [],
82-
}),
83-
),
84-
);
85-
expect(true).toBe(true);
74+
// TODO: Fix this test once the ping method is implemented
75+
it.todo('pings vats', async () => {
76+
// silence is golden
8677
});
8778
});

0 commit comments

Comments
 (0)