File tree 2 files changed +11
-7
lines changed
2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,10 @@ export class FridaSession {
195
195
const agentSession = await this . getAgentSession ( sessionId ) ;
196
196
197
197
const script = await agentSession . createScript ( fridaScript , { } ) ;
198
- await script . loadScript ( ) ;
198
+
199
+ setTimeout ( async ( ) => {
200
+ await script . loadScript ( ) ;
201
+ } , 0 ) ;
199
202
200
203
return {
201
204
session : agentSession ,
@@ -233,9 +236,12 @@ export class FridaSession {
233
236
const agentSession = await this . getAgentSession ( sessionId ) ;
234
237
235
238
const script = await agentSession . createScript ( fridaScript , { } ) ;
236
- await script . loadScript ( ) ;
237
239
238
- await hostSession . Resume ( pid ) ;
240
+ setTimeout ( async ( ) => {
241
+ await script . loadScript ( ) ;
242
+ await hostSession . Resume ( pid ) ;
243
+ } , 0 ) ;
244
+
239
245
return {
240
246
pid,
241
247
session : agentSession ,
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ describe("Frida-JS", () => {
120
120
path . join ( FIXTURES_BASE , `serve-${ process . platform } -${ process . arch } ` ) ,
121
121
[ ] ,
122
122
// Run an example script that always crashes:
123
- "setTimeout(() => { throw new Error('Intentional script failure error'); }, 100 );"
123
+ "throw new Error('Intentional script failure error');"
124
124
) ;
125
125
const messages : any [ ] = [ ] ;
126
126
session . onMessage ( ( msg ) => messages . push ( msg ) ) ;
@@ -134,9 +134,7 @@ describe("Frida-JS", () => {
134
134
type : 'error' ,
135
135
description : 'Error: Intentional script failure error' ,
136
136
stack : 'Error: Intentional script failure error\n' +
137
- ' at <anonymous> (/script1.js:1)\n' +
138
- ' at apply (native)\n' +
139
- ' at <anonymous> (frida/runtime/core.js:51)' ,
137
+ ' at <eval> (/script1.js:1)' ,
140
138
fileName : '/script1.js' ,
141
139
lineNumber : 1 ,
142
140
columnNumber : 1
You can’t perform that action at this time.
0 commit comments