Skip to content

Commit 11d1083

Browse files
test
1 parent 52cd6b6 commit 11d1083

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

packages/frida-tools/test/agent4/agent4.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { FridaLive } from "../base.ts";
77
const ScriptLive = FridaScript.layer(new URL("effect.agent.ts", import.meta.url));
88

99
layer(FridaLive, { excludeTestServices: true })("local device tests", (it) => {
10-
it.layer(ScriptLive, { timeout: "1 minute" })((it) => {
10+
it.layer(ScriptLive)((it) => {
1111
it.scoped("agent4 on local device", () =>
1212
Effect.gen(function* () {
1313
const script = yield* FridaScript.FridaScript;

packages/frida-tools/test/base.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export const SessionLive = Layer.unwrapScoped(
1010
const executor = yield* CommandExecutor.CommandExecutor;
1111
const command = Command.make("sleep", "infinity");
1212
const process = yield* executor.start(command);
13+
yield* Effect.sleep("5 seconds");
1314
return FridaSession.layer(process.pid);
1415
})
1516
);

0 commit comments

Comments
 (0)