Remove deprecated console tests from node (#43387)

These console methods are removed in TS 3.9, so node doesn't need to
test them anymore.

Co-authored-by: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com>
This commit is contained in:
Ron Buckton 2020-03-25 17:48:52 -07:00 committed by GitHub
parent 638a579eec
commit aee6e22947
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -259,18 +259,12 @@ import * as trace_events from "trace_events";
console.warn('message', 'foo', 'bar');
// --- Inspector mode only ---
console.markTimeline();
console.markTimeline('label');
console.profile();
console.profile('label');
console.profileEnd();
console.profileEnd('label');
console.timeStamp();
console.timeStamp('label');
console.timeline();
console.timeline('label');
console.timelineEnd();
console.timelineEnd('label');
}
}