Skip to content

Commit 096fafc

Browse files
committed
fix: satisfy android test setup lint
1 parent 1e74359 commit 096fafc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/platform-android/test/setup.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ const createMockSubprocess = () => ({
2323
nodeChildProcess: Promise.resolve({
2424
kill: vi.fn(),
2525
}),
26-
[Symbol.asyncIterator]: async function* () {},
26+
[Symbol.asyncIterator]: async function* () {
27+
yield* [];
28+
},
2729
});
2830

2931
vi.mock('../src/adb.js', async (importOriginal) => {

0 commit comments

Comments
 (0)