diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-08-30 14:31:36 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 14:31:36 +0530 |
commit | a7558196a7c01bd273b05a3e2180f0f219de81b4 (patch) | |
tree | 074ce570501331f2d66a8d7d835583ee8064f0cf /core/runtime.rs | |
parent | 448654764f9c403b2e0d93f6d8dd4044733977ce (diff) |
perf: use fast api for `core.isProxy` (#15682)
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index 50c108f33..366e834a2 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -3121,6 +3121,7 @@ assertEquals(1, notify_return_value); runtime.execute_script("<none>", "").unwrap(); } + #[ignore] // TODO(@littledivy): Fast API ops when snapshot is not loaded. #[test] fn test_is_proxy() { let mut runtime = JsRuntime::new(RuntimeOptions::default()); |