diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-11-22 02:17:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 02:17:14 +0100 |
commit | 1ec357faf37916ba84ad7a57208e48103294885a (patch) | |
tree | da235cfc13738ce6eaae5a747119615e5b2a2cf9 /cli/tests/testdata/inspector/inspector3.js | |
parent | 5c7dc904fb78cbf2d9e4707a9172a9291a55f8ab (diff) |
fix(inspector): ensure console methods provided by inspector are available (#16724)
Diffstat (limited to 'cli/tests/testdata/inspector/inspector3.js')
-rw-r--r-- | cli/tests/testdata/inspector/inspector3.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/testdata/inspector/inspector3.js b/cli/tests/testdata/inspector/inspector3.js index b1b00b5a0..8d605a286 100644 --- a/cli/tests/testdata/inspector/inspector3.js +++ b/cli/tests/testdata/inspector/inspector3.js @@ -1,4 +1,10 @@ // deno-lint-ignore-file + +// check that console methods provided by V8 are available in the inspector +console.timeStamp("foo"); +console.profile("foo"); +console.profileEnd("foo"); + for (let i = 0; i < 128; i++) { console.log(i); debugger; |