Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: test/inspector/debugger/async-stacks-limit-expected.txt

Issue 2579403002: [inspector] introduce limit for amount of stored async stacks (Closed)
Patch Set: added missing test Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 Checks that async stacks works good with different limits
2
3 Running test: testZeroLimit
4 foo1 (test.js:11:2)
5
6
7 Running test: testOneLimit
8 foo1 (test.js:11:2)
9 -- Promise.resolve --
10 promise (test.js:23:2)
11 (anonymous) (expr.js:0:0)
12
13
14 Running test: testOneLimitTwoPromises
15 foo1 (test.js:11:2)
16
17 foo2 (test.js:15:2)
18
19
20 Running test: testTwoLimitTwoPromises
21 foo1 (test.js:11:2)
22 -- Promise.resolve --
23 twoPromises (test.js:34:2)
24 (anonymous) (expr.js:0:0)
25
26 foo2 (test.js:15:2)
27 -- Promise.resolve --
28 twoPromises (test.js:35:2)
29 (anonymous) (expr.js:0:0)
30
31
32 Running test: testOneLimitTwoSetTimeouts
33 foo1 (test.js:11:2)
34
35 foo2 (test.js:15:2)
36 -- setTimeout --
37 twoSetTimeout (test.js:41:2)
38 (anonymous) (expr.js:0:0)
39
40
41 Running test: testTwoLimitTwoSetTimeouts
42 foo1 (test.js:11:2)
43 -- setTimeout --
44 twoSetTimeout (test.js:40:2)
45 (anonymous) (expr.js:0:0)
46
47 foo2 (test.js:15:2)
48 -- setTimeout --
49 twoSetTimeout (test.js:41:2)
50 (anonymous) (expr.js:0:0)
51
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698