File tree Expand file tree Collapse file tree
packages/frida-tools/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { FridaLive } from "../base.ts";
77const ScriptLive = FridaScript . layer ( new URL ( "effect.agent.ts" , import . meta. url ) ) ;
88
99layer ( 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 ;
Original file line number Diff line number Diff 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) ;
You can’t perform that action at this time.
0 commit comments