Index: test/debugger/debug/es6/debug-promises/throw-caught-by-default-reject-handler.js |
diff --git a/test/mjsunit/es6/debug-promises/throw-caught-by-default-reject-handler.js b/test/debugger/debug/es6/debug-promises/throw-caught-by-default-reject-handler.js |
similarity index 92% |
rename from test/mjsunit/es6/debug-promises/throw-caught-by-default-reject-handler.js |
rename to test/debugger/debug/es6/debug-promises/throw-caught-by-default-reject-handler.js |
index 8b798f7af9d04f20bfcbb43f8f263e5a03c0b524..8d6319a05a8ee279023b82e46c11688a66ca8add 100644 |
--- a/test/mjsunit/es6/debug-promises/throw-caught-by-default-reject-handler.js |
+++ b/test/debugger/debug/es6/debug-promises/throw-caught-by-default-reject-handler.js |
@@ -2,7 +2,6 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// Flags: --expose-debug-as debug --allow-natives-syntax |
// Test debug events when we only listen to uncaught exceptions and |
// there is only a default reject handler for the to-be-rejected Promise. |
@@ -42,11 +41,9 @@ function listener(event, exec_state, event_data, data) { |
expected_events--; |
assertTrue(expected_events >= 0); |
assertTrue(event_data.uncaught()); |
- assertTrue(event_data.promise() instanceof Promise); |
// p1 is rejected, uncaught except for its default reject handler. |
assertTrue( |
exec_state.frame(0).sourceLineText().indexOf("// event") > 0); |
- assertSame(p1, event_data.promise()); |
} |
} catch (e) { |
%AbortJS(e + "\n" + e.stack); |